//--DOMREADY

dateCache = new Date().getTime();
	
$(document).ready(function() {

	// if ( $.browser.msie && $.browser.version == 6 )
	// {
	// 	ie6_modal();
	// 	return;
	// }

	// ===================
	// = EMBEDDING FLASH =
	// ===================
	
	// function embed_the_swf()
	// {
	// 	section_to_show = jQuery.url.param("url");
	// 	language_to_show = jQuery.url.param("xml");
	// 
	// 	//-- condizione per la homepage
	// 	if ( section_to_show == undefined ) section_to_show = "homepage";
	// 	if ( language_to_show == undefined ) language_to_show = "shared";
	// 	
	// 	
	// 	var flashMovie = new SWFObject("files/swf/"+section_to_show+".swf?"+dateCache, "PassamaneriaItaliana", "100%", "100%", "9", "", false);
	// 	// flashMovie.useExpressInstall("expressinstall.swf");
	// 	flashMovie.addParam("wmode","opaque");
	// 	flashMovie.addParam("base","files/swf");
	// 	flashMovie.addParam("allowFullScreen","true");
	// 	flashMovie.write("flash_container");
	// }
	// 
	// embed_the_swf();

		section_to_show = jQuery.url.param("url");
		language_to_show = jQuery.url.param("xml");
		if(section_to_show=="italiano") section_to_show='homepage';
	
		//-- condizione per la homepage
		if ( section_to_show == undefined ) section_to_show = "homepage";
		if ( language_to_show == undefined ) language_to_show = "shared";
	
	myFlash = $.flash({
				swf: "files/swf/"+section_to_show+".swf?"+dateCache,
				height: "100%",
				width: "100%",
				params: {
					allowFullScreen: true,
					wmode: "opaque",
					base: "files/swf"
				}
			});

	function embedFlash(){
		if($.hasFlashPlayer == true && $.hasFlashPlayerVersion(9.1) == true) {
			$("#flash_container").html(myFlash);
		} else{
			$("#flash_container").load("noFlash.php"); ;
		}
	}
	
	embedFlash();
});
