/**
 *	@filename		home.js
 *	@charset		utf-8
 *	@created		December 04, 2009
 *	@lastmodified	December 04, 2009
 *	@description	トップページ専用js
 */
(function(){

////////////////////////////////////////////////////////////////////////////////////////////////////
//
//	DOM読み込み完了後に実行
//
////////////////////////////////////////////////////////////////////////////////////////////////////
$(function(){
	
//
//	Flash書き出し
//
if($("body#home").length!=0){
	$("div#mainVisual p").css({"display":"none"});
	
	if($("div#mainVisual p").length!=0){
		if(swfobject.getFlashPlayerVersion().major < 9){
			$("div#mainVisual p").css({"display":"block"});
		}else{
			$("div#mainVisual").append('<div id="flashContent"></div>');
			//
			//Flashコンテンツを挿入
			//
			var swf_file = "fl/main_visual.swf";
			swfobject.embedSWF(swf_file,"flashContent","850","225","9.0.0",null,
					   {},
					   {allowScriptAcces:"sameDomain",allowFullScreen:"false",quality:"high",bgcolor:"#ffffff",menu:"false"},
					   {} );
		}
	}
}
	
	
	

});
////////////////////////////////////////////////////////////////////////////////////////////////////



})();
