// 特定の画像だけにスポットをあてる

$(function(){
	$(".hover,#left_navi img").hover(
function(){   // マウスオーバー
$(this).fadeTo(100, 0.5);
},
function(){   // マウスアウト
$(this).fadeTo(100, 1);
}
);

})


/*TOPのみ*/
$(function(){
	$(".hover,#top_kouken img").hover(
function(){   // マウスオーバー
$(this).fadeTo(100, 0.5);
},
function(){   // マウスアウト
$(this).fadeTo(100, 1);
}
);

})

$(function(){
	$(".hover,#recruit_box img").hover(
function(){   // マウスオーバー
$(this).fadeTo(100, 0.5);
},
function(){   // マウスアウト
$(this).fadeTo(100, 1);
}
);

})

$(function(){
	$(".hover,#staff_message img").hover(
function(){   // マウスオーバー
$(this).fadeTo(100, 0.5);
},
function(){   // マウスアウト
$(this).fadeTo(100, 1);
}
);

})
