$(function(){

	/* 画像マウスオーバー */
	$("a img").mouseover(function(){
		$(this).fadeTo("fast",0.6);
	}).mouseout(function(){
		$(this).fadeTo("slow",1);
	}).mouseup(function(){
		$(this).fadeTo("slow",1);
	});


});


