$(function(){
	// ヘッダー位置、Windowサイズに合わせて調整
	$("#Main").css("display", "block");
	var v  = Math.floor(($(window).height() - $("#Header").height()) / 2);
	$("#Header").css({"margin-top": v, "margin-bottom": v, "opacity": 0}).animate({opacity: "1"},{queue: true, duration: 2000, easing: "linear", complete: function(){}});
	
	// 画像読み込み
	$("#DM .article dl > dd > a").each(function(){
		var src = $(this).attr("href");
		var alt = $(this).attr("title");
		$("<img />").attr("src", src);
	});
	$("#DM .article dl > dd > a").click(function(){
		var src = $(this).attr("href");
		var alt = $(this).attr("title");
		$(".act").removeClass("act");
		$(this).addClass("act");
		$("#target").fadeOut("slow", function() {
			$(this).attr("src", src);
			$(this).attr("alt", alt);
			$(this).fadeIn();
		});
		return false;
	});
	
	// ページ内スムーススクロール
	$('a[href^=#]').click(function() {
		var speed = 400;
		var href= $(this).attr("href");
		var target = $(href == "#" || href == "" ? 'html' : href);
		var position = target.offset().top;
		$($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'swing');
		return false;
	});
});
