// JavaScript Document

//topのメイン画像hover

$(document).ready(function(){
	$("#header .mImage img:not(:animated)").hover(
		function(){
			$(this).animate({
					opacity:0
			},500,"easeOutCubic");
		},
		function(){
			$("#header .mImage img:animated").stop();
			$("#header .mImage img").animate({
					opacity:1
			},100,"easeInExpo");
		}
	);
	
	$("#header .gMenu ul li a img:not(:animated)").hover(
		function(){
			$(this).animate({
					opacity:0
			},300,"easeOutExpo");
		},
		function(){
			$("#header .gMenu ul li a img:animated").stop()
			$("#header .gMenu ul li a img").animate({
					opacity:1
			},0,"easeInExpo");
			
		}
	);
	
	
	$("#header .title p.inquiry img").hover(
		function(){
			$(this).attr("src","/img/hToiawase2.jpg");
		},
		function(){
			$(this).attr("src","/img/hToiawase.jpg");
		}
	);
});

