$(document).ready(
	function(){
		
		//---- ページトップへのスライダー
		$("div.pageTop a").click(function(){
			$("html, body").animate({scrollTop: 0}, "normal", "easeOutCubic");
			return false;
		});
		
		
		//---- 指定アンカーへのスライダー
		$("a.slider").click(function(){
			var targetA = $(this).attr('href');
			var targetY = $(targetA).offset().top - 10;
			$("html, body").animate({scrollTop: targetY}, "slow", "easeOutCubic");
			return false;
		});
		
		
		//----- contact shadowbox
		Shadowbox.init();
		
		$('ul#headnv > li:eq(2) > a').click(function(e){
			e.preventDefault();
			var linkURL = $(this).attr('href');
			Shadowbox.open({
				content: linkURL,
				player: 'iframe',
				width: 740,
				height: 655
			});
			return false;
		});
		
	}
);


//---- 指定アンカーへのスライダー
function slideAnchor(a){
	var target = $(a).offset().top - 10;
	$("html, body").animate({scrollTop: target}, "slow", "easeOutCubic");
	return false;
}

