$(function(){
	/* ウィンクみたいなー */
	$("img.wink, div#contentsWrap a img,div#companionWrap a img,div#todaySheduleWrap a img,div#picGra a img,.showImage a img").hover(function(){
		$(this).css("opacity", "0.4");
		$(this).css("filter", "alpha(opacity=40)");
		$(this).fadeTo("slow", 1.0);
	});
	
});

