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