// Flash header Script
// Blank theme

if(window.attachEvent) //IE
{
	window.attachEvent("onload", _initPageFunction);
}
else if(window.addEventListener) //DOM
{
	window.addEventListener("load", _initPageFunction, false);
}

// Function used to initialize all functions used in page
function _initPageFunction()
{
	_initLogo();
}

// function that insert a link over the logo in the header of the page for SEO
function _initLogo()
{
	var oDivLogo = document.getElementById('contentLogo');
	if(EcommercePageCulture == "fr-CA")
	{
		if(oDivLogo){oDivLogo.innerHTML = '<a id="procureLogo" href="/" title="La Procure Éccléastique">La Procure Ecclesiastique</a>';}
	}
	else
	{
		if(oDivLogo){oDivLogo.innerHTML = '<a id="procureLogo" href="/" title="Ecclesiastical Supply Center">Ecclesiastical Supply Center</a>';}
	}
}