$(function(){

	/* ウィンク効果*/
	$("#header div h1 a img, p#btn-home a img, p#btn-rss a img, div#pagetop a img, img.banner, img.tomap, #footer div.c-footer p.footlogo a img").hover(function(){
		$(this).css("opacity", "0.6");
		$(this).css("filter", "alpha(opacity=60)");
		$(this).fadeTo("slow", 1.0);
	});


});