$(document).ready(function(){

	// リンク画像にフェード効果（ウィンク）
	$("#header h1 a:hover, #content .sidebar a:hover img, p.gotop a:hover, .twoColLt #content .sidebar #sec-nav li a:hover, .twoColLt #map p a:hover").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).fadeTo("slow", 1.0);
	}, function(){
		$(this).show("fast");
	});	

	
});