$(function(){
	
	$('#grNavi li.link img').each(function(){
		
		var src, osrc;
		
		// 通常画像
		src = this.src;
		
		// オーバー画像
		osrc = src.replace(/(.+?)\.jpg$/, '$1_here.jpg');
		
		// オーバー画像のプリロード
		(new Image).src = osrc;
		
		// 親要素にオーバー画像を指定
		$(this).parent().css('background', 'url(' + osrc + ')');
		
		// イベントの登録
		$(this).hover(
			function(){
				$(this).stop(true).animate({'opacity': 0},200,'swing');
			},
			function(){
				$(this).stop(true).animate({'opacity': 1},400,'swing');
			}
		);
		
	});
		
});

$(function(){
	
	// クリックイベントの登録
	$('#pagetop a').click(function(){
		
		// ページトップへスクロール
		$('html, body').animate({
				'scrollTop': 0
			}, 900, 'easeInOutExpo');
		
		// デフォルトイベントのキャンセル
		return false;
	
	});
	
});



