/* ------------------------------------------------------- */
/* Update：2010.03.03
/* 現在位置のナビゲーションを反転させる為のjsファイル
/* ------------------------------------------------------- */

$(document).ready( function() {
		$("#globalNav li a,#nav a").each( function() {
				var url = document.URL.split("#");
				if ( this == url[0] || this + "index.html" == url[0]) {
						$(this).addClass("current");
				}
		});
});
$(function() {
  $(".current").each(function(){
		$(this).find('img').each(function(){
			this.currentSrc = this.getAttribute('src').replace("_off.", "_on.");
			$(this).attr('src',this.currentSrc);
		});
	});
});
$(function(){
     $("a[href*=https://www.shika-town.com/reservation/] img,a[href*=http://www.kanakuri-shinbi.com/] img").hover(
          function(){$(this).fadeTo(100, 0.7);return false;},
          function(){$(this).fadeTo(100, 1);return false;}
     );
})

