$(function(){
	
	
	/* ウィンク効果 */
	$("#header a img").hover(function(){
		$(this).css("opacity","0.2");
		$(this).css("filter","alpha(opacity=20)");
		$(this).fadeTo("slow","1.0");
	});
	
		$("#side_contents a img").hover(function(){
		$(this).css("opacity","0.2");
		$(this).css("filter","alpha(opacity=20)");
		$(this).fadeTo("slow","1.0");
	});
	
		$(".amenity a img").hover(function(){
		$(this).css("opacity","0.2");
		$(this).css("filter","alpha(opacity=20)");
		$(this).fadeTo("slow","1.0");
	});
	
		$("#side_contents2 a img").hover(function(){
		$(this).css("opacity","0.2");
		$(this).css("filter","alpha(opacity=20)");
		$(this).fadeTo("slow","1.0");
	});
	
		$("#content_bt a img").hover(function(){
		$(this).css("opacity","0.2");
		$(this).css("filter","alpha(opacity=20)");
		$(this).fadeTo("slow","1.0");
	});
	
		$(".info a img").hover(function(){
		$(this).css("opacity","0.2");
		$(this).css("filter","alpha(opacity=20)");
		$(this).fadeTo("slow","1.0");
	});
	
	
})







