﻿// 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();
	_changeSearchButton();
}

// 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="logoMBM" href="/" title="Publicité MBM Promotion.com">Publicité MBM Promotion.com</a>';}
	}
	else
	{
		if(oDivLogo){oDivLogo.innerHTML = '<a id="logoMBM" href="/" title="Advertising MBM Promotion.com">Advertising MBM Promotion.com</a>';}
	}
}


function changeCulture()
{
	if(EcommercePageCulture == "fr-CA")
	{
		window.location = _skCMSCurrentPage_enus;
	}
	else
	{
		window.location = _skCMSCurrentPage_frca;
	}
}

function _changeSearchButton()
{
	var btn = document.getElementById("oucHeader_oucSearch_cmdSearch");
	if(btn)
	{
		if(EcommercePageCulture == "fr-CA")
		{
			btn.src = "/ecom_theme/img/btn/fr-ca/search.gif"
		}
		else
		{
			btn.src = "/ecom_theme/img/btn/en-us/search.gif"
		}
	}
}
