//////////////////////////////////////BEGINNING OF WINDOW ONLOAD LISTENER
function addListener(element, eventName, listener)
{
    if (typeof element.addEventListener !== "undefined")
	{
        // W3C-compliant browsers
        element.addEventListener(eventName, listener, false);
    }
	else if (typeof element.attachEvent !== "undefined")
	{
        // Internet Explorer
        element.attachEvent("on" + eventName, listener);
    }
}

addListener(window, "load", initEmbedSwf);
//////////////////////////////////////END OF WINDOW ONLOAD LISTENER

function initEmbedSwf()
{
	var flashvars = {};
	var params = {scale: "noScale", sAlign: "tl", allowFullScreen: "true", allowScriptAccess: "sameDomain", wmode: "transparent", FlashVars: ""};
	var attributes = {};
	swfobject.embedSWF("includes/home_vid.swf", "flashContent", "1100px", "600px", "9.0.0", false, flashvars, params, attributes);
}