jQuery(function(){

	/* ウィンク効果 */
	jQuery("#logo h1 a img, #main a img, #sidebar a img").hover(function(){
		jQuery(this).css("opacity", "0.2");
		jQuery(this).css("filter", "alpha(opacity=20)");
		jQuery(this).fadeTo("slow", 1.0);
	});

});
