﻿// ****************************************************************
//   
//   実行処理
//   
// ****************************************************************
$(function(){
	// Flash設定
	var version="9.0.115";
	if(swfobject.hasFlashPlayerVersion(version)){
		var f={};
		var a={id:'swfcontent',name:'swfcontent'};
		if(swfobject.getQueryParamValue("area")){f.area=swfobject.getQueryParamValue("area");}
		var p={menu:'false',wmode:'window',allowScriptAccess:'always',bgcolor:'#F0EDE6',base:'/shop/'};
		if(mac)p.wmode='transparent';
		swfobject.embedSWF("/shop/shoplocator.swf","swfcontent","750","490",version,"/swf/expressInstall.swf",f,p,a);
	}else{
		var noflash=$('<p class="noflash">Flash Playerをインストールしていないか、古いバージョンのFlash Playerがインストールされています。<br>ページを適切に表示するには、Flash Player9以上が必要となります。最新のFlash Playerをダウンロードしてご利用下さい。<br><a href="http://www.adobe.com/go/getflashplayer" target="_blank"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player"></a></p>');
		$(noflash).css({'text-align':'left'});
		$("#swfcontent").append(noflash);
		//$("#swfcontent noscript").after($("#swfcontent noscript").text());
	}
});


// ****************************************************************
//   
//   Flash ホイール制御
//   
// ****************************************************************
//ブラウザのホイールの状態（初期値有効）
var _wheelEnabled=true;

//Flashから呼ばれる関数
function wheelEnabled(flg){_wheelEnabled=flg;}

//ホイールイベントの処理
function wheel(event){
	if(!_wheelEnabled){
		if(!event)event=window.event;
		if(event.preventDefault)event.preventDefault();
		event.returnValue=false;
	}
}

//イベントリスナーの登録
if(window.addEventListener)window.addEventListener('DOMMouseScroll',wheel,false);
window.onmousewheel=document.onmousewheel=wheel;

