$(function(){


	/* ウィンク効果 */
	$("a img").hover(function(){
		$(this).css("opacity", "0.4");
		$(this).css("filter", "alpha(opacity=40)");
		$(this).fadeTo("slow", "1.0");

	});



});







