
$(document).ready(function(){
	
	//グローバルナビ
	$("#header ul#gnavi li a img").each(function(){
		var bglink = $(this).attr("src").replace(".gif", "_on.gif");
		$(this).parent().parent().css("background-image","url("+bglink+")");
		
		$(this).hover(function () {
			$(this).stop().fadeTo(200,0);
		},function () {
			$(this).stop().fadeTo(200,1);
		});
	});
	
	//スムーズスクロール
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var sclpos = 30;
				var scldurat = 3000;
				var targetOffset = target.offset().top - sclpos;
				$('html,body')
					.animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
				return false;
			}
		}
	});
	
	//カラーボックス
	$(document).ready(function(){
			$(".playMovie").colorbox();
	});
	
});
