$(function(){
			if (!document.getElementById) return false;
			if (!document.createElement) return false;
			
			var id = document.getElementById("main_flash");
			var embed = document.createElement("embed");
			
			embed.setAttribute("src","index.swf");
			embed.setAttribute("quality","high");
			embed.setAttribute("width","860");
			embed.setAttribute("height","525");
			embed.setAttribute("allowScriptAccess","sameDomain");
			embed.setAttribute("type","application/x-shockwave-flash");
			embed.setAttribute("pluginspage","http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash");
			
			id.appendChild(embed);
		});