$(function(){
	/* ウィンク効果 */
	$("img.wink, div.col3 a img, div#alpha a img, div#content a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});
	
});


