jQuery(function($) {
// HOVER
$("img.bt").hover(
	function(){   // マウスオーバー
	$(this).fadeTo(1, 0.7);
	},
	function(){   // マウスアウト
	$(this).fadeTo(1, 1);
	}
);



});
