$(function(){

	$('#head img.recruit_button').fadeTo(0,0.5);//ページ読み込み時
	});

	$(function(){
	$('#head img.recruit_button').hover(

	function(){
	$(this).fadeTo(100,1.0);
	},
	
	function(){
	$(this).fadeTo(200,0.4);
	});

});
