// Flash header Script
// K-ecommerce Demo Store 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();
	_positionSearch();
	_changeBrands();
	
		if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){
		_checkTabPosition();
	}
}

// function that insert a link over the logo in the header of the page for SEO
function _initLogo()
{
	if(document.getElementById('contentLogo'))
	{
		var oDivLogo = document.getElementById('contentLogo');
		if(EcommercePageCulture == "fr-CA")
		{
			if(oDivLogo){oDivLogo.innerHTML = '<a id="Logo" href="/" title="&Eacute;glise Salut D&eacute;livrance">&Eacute;glise Salut D&eacute;livrance</a>';}
		}
		else
		{
			if(oDivLogo){oDivLogo.innerHTML = '<a id="logo" href="/" title="&Eacute;glise Salut D&eacute;livrance">&Eacute;glise Salut D&eacute;livrance</a>';}
		}
	}
}

function _checkTabPosition()
{
	if(document.getElementById("oucProductDescription_oTabs"))
	{
		document.getElementById("oucProductDescription_oTabs").style.marginBottom = "-1px";
	}
}

function _positionSearch(){
	if(document.getElementById("flashdefault") && document.getElementById("contentSearchAvailable"))
	{
		var flashSize = document.getElementById("flashdefault").offsetHeight;
		document.getElementById("contentSearchAvailable").style.top = document.getElementById("contentSearchAvailable").offsetTop + flashSize + "px";
	}
	
	if(document.getElementById("oLayerSwitch") && document.getElementById("contentSearchAvailable"))
	{
		document.getElementById("contentSearchAvailable").style.display = "none";
	}
}

function _changeBrands(){
var brandsLnk = document.getElementById("oucLeftMenu_oucMenuCategoryList_lnkBrands")

	if(brandsLnk)
	{
		brandsLnk.innerHTML = "Enseignants"
	}

}
