// JavaScript Document
$(function(){
	$(document).ready(function() {

		$("#main .navi li img").each(function(){
			if(!$(this).attr("class").match(/hit/)){
				$(this).bind("mouseover", function(){
					$(this).css("margin-top","-62px");
				});
				$(this).bind("mouseout", function(){
					$(this).css("margin-top","0px");
				});
			}
		});

		$("#main .navi_sub li img").each(function(){
			if(!$(this).attr("class").match(/hit/)){
				$(this).bind("mouseover", function(){
					$(this).css("margin-top","-45px");
				});
				$(this).bind("mouseout", function(){
					$(this).css("margin-top","0px");
				});
			}
		});
		
		$(".pageTop a").easingScroll({
			easing: "easeOutCirc",
			duration: 275
		});
		
	});	
});
//戻るボタン用
$(window).unload(function(){
});
