// JavaScript Document
$(document).ready(
	function(){
		$("#menu img").hover(function(){
			$(this).fadeTo("normal", 1.0); // マウスオーバーで透明度を100%にする
		},function(){
			$(this).fadeTo("normal", 0.6); // マウスアウトで透明度を60%にする
		});
	});
$(document).ready(
	function(){
		$("#footerbanner img,#main_leftBan img,#guide img,#hotelwrap img,#hotelcate img,#linkBan img,#indexBt img,#selecthotel img").hover(function(){
			$(this).fadeTo("normal", 0.7); // マウスオーバーで透明度を70%にする
		},function(){
			$(this).fadeTo("normal", 1.0); // マウスアウトで透明度を100%に戻す
		});
	});
