// JavaScript Document


try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}


// スムーススクロール
$(function() {
	//$('a[href*=#]').click(function() {
	$('a[href*=#]:not(.pageTop,a[href=#],a[href*=#tab01],a[href*=#tab02],a[href*=#tab03],a[href*=#tab04],a[href*=#tab05],a[href*=#tab06])').click(function(){
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var sclpos = 30;
				var scldurat = 1200;
				var targetOffset = target.offset().top - sclpos;
				$('html,body')
					.animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
				return false;
			}
		}
	});
});


//シャトルバス時刻表
function bus(){
 win=window.open("bus.html","bus","menubar=no,scrollbars=no,resizable=yes,width=730,height=680");
}


//フォトギャラリー投稿ポップアップ
function galleryform(){
 win=window.open("form.html","galleryform","menubar=no,scrollbars=no,resizable=yes,width=630,height=410");
}

//レシピ投稿ポップアップ
function recipeform(){
 win=window.open("form.html","recipeform","menubar=no,scrollbars=no,resizable=yes,width=630,height=470");
}





