$(function(){
	
	var d3 = function(){};
	d3.prototype = {
		opening:function(){
			$('#contents,footer').delay(1000).fadeIn(1000);
		},
		/* ロゴ用 */
		nav:function(target){
			$(target).hover(function(){
				$("body").animate({backgroundColor:"#666"}, 200);
			},function(){
				$("body").animate({backgroundColor:"#fff"}, 100);
			});
		}
	}
	
	var D3 = new d3();
	D3.opening();
	D3.nav('h1 a');
	
	//アンカーリンククリック時
	$('a[href^=#]').click(function() {
		var href= $(this).attr("href"),
		target = $(href == "#" || href == "" ? 'html' : href),
		position = target.offset().top;
		$($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, 300, 'easeOutCirc');
		return false;
	});
	
});
