$(function(){
	// 以下で 設定
	// alert("jQuery is running");
	// マウスオーバー00
	// 画像を薄く
	
	$(".proc_yhs_m00 A img").mouseover(function(){
		$(this).stop().fadeTo(350,0.5);
	});
	$(".proc_yhs_m00 A img").mouseout(function(){
		$(this).stop().fadeTo(350,1);								  
	});

});


