// JavaScript Document
	 var flashpath = "../Container.swf";
	 var flashpathindex = "Container.swf";
	 var currentpath = flashpath;
	
function Setup()
{

	
		if(document.title == "Independent Porsche Specialist Kent ~ Porsche Servicing Kent ~ Porsche Restoration Kent ~ Porsche Track Preparation Kent")
	{
		
		currentpath = flashpathindex;
		

	}
	else
	{
		
		currentpath = flashpath;
	}
	
		var params = {}; 
		params.wmode = "transparent";
	    swfobject.embedSWF(currentpath, "FlashHeader", "990", "270", "9.0.0","","",params,"",callbackFn);
}
function callbackFn(e)
{
		var flashheader = document.getElementById("FlashHeader");

	
		if(!e.success)
		{

						if(document.title == "Independent Porsche Specialist Kent ~ Porsche Servicing Kent ~ Porsche Restoration Kent ~ Porsche Track Preparation Kent")
						{
							
							flashheader.style.backgroundImage = "url(images/porsche-static-banner.jpg)";
							
						}
						else
						{
							flashheader.style.backgroundImage = "url(../images/porsche-static-banner.jpg)";
						}

		}
	}
	
