﻿// Flash header Script
/******************** Event registration ********************/
if(window.attachEvent) //IE
{
	window.attachEvent("onload", _initPageFunction);
}
else if(window.addEventListener) //DOM
{
	window.addEventListener("load", _initPageFunction, false);
}

function _initPageFunction()
{

	_initLogo();
	
	var oCustomerSupport = document.getElementById("oucHeader_oucCustomerService_lnkReturnCustomerService");
	var oDivCulture;

	if (!oCustomerSupport)
	{
		oCustomerSupport = document.getElementById("oucHeader_oucCustomerService_lnkCustomerService");
	}

	if (oCustomerSupport)
	{
		oDivCulture = document.getElementById("culture");
		oDivCulture.style.top = "56px";
	}
}

function setCustomerSupport()
{
	
}

// function that insert a link over the logo in the header of the page for SEO
function _initLogo()
{
	var oDivLogo = document.getElementById('contentLogo');
	
	if(oDivLogo){oDivLogo.innerHTML = '<a id="pneusLevisLogo" href="/" title="Pneus Lévis">Pneus Lévis</a>';}
}