
// ------- Private vars -------
var jsReady = false;

// ------- functions called by ActionScript -------
// called to check if the page has initialized and JavaScript is available
function isReady()
{
    return jsReady;
}

// called by the onload event of the <body> tag
function pageInit()
{
    // Record that JavaScript is ready to go.
    jsReady = true;
}

function playVideo(){
	
	var soVideo = new SWFObject(""images/HomeFlash843x218.swf"", "video", "843", "218", " ", "#000000");
	soVideo.addParam("allowScriptAccess", "sameDomain");
	soVideo.write("videoOverlayTarget");
	

}

