$(document).ready(function(){

						   
//img要素のsrcに_offが含まれる場合MouseOver時に_onに入れ替える
	$("img[src*=_off]").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace("_off","_on"));
	});
	$("img[src*=_off]").mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace("_on","_off"));
	});
	


//GlobalMenuのスクリプト
//MouseOver時にアニメーションする
	$("#nav").children().mouseover(function(){
		if($(this).attr("class")=="activ"){}else{
			$(this).children("img").css({width:"10px"});
		}
	});
	$("#nav").children().mouseout(function(){
		$(this).children("img").css({width:"0px"});
	});
	
//footGlobalMenuのMouseEvent
	$("#foot_menu").children().children().mouseover(function(){
		$(this).fadeTo(200,0.5);
	});
	$("#foot_menu").children().children().mouseout(function(){
		$(this).fadeTo(200,1);
	});


//TOP美容、健康メニューのアニメーション
	$(".menu1,.menu2").children().mouseover(function(){
		$(this).stop().animate({marginLeft:"30px"})	
		.css({color:"#ffcd0d"});	
	});
	$(".menu1,.menu2").children().mouseout(function(){
		$(this).stop().animate({marginLeft:"10px"})
		.css({color:"#fff"});
	});
	
//

	$("img[src*=foot.gif]").css({verticalAlign:"top"});


});
