// 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();
	
		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="k-ecommerceDemo" href="/" title="Gold-Tech - The Smart Choice">Gold-Tech - The Smart Choice</a>';}
		}
		else
		{
			if(oDivLogo){oDivLogo.innerHTML = '<a id="k-ecommerceDemo" href="/" title="Gold-Tech - The Smart Choice">Gold-Tech - The Smart Choice</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";
	}
}
