// Init Script
/***********************************************************/

_initTopSubNavigation();


// 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();
	_initHeaderAddress();
	_initPageHeader();
	
}


function _initLogo()
{
	var oDivLogo = document.getElementById('contentLogo');
	
	if(oDivLogo){oDivLogo.innerHTML = '<a id="AttacheRemorqueLogo" href="/" title="Attache-Remorques Gatineau">Attache-Remorques Gatineau</a>';}
}

function _initPageHeader()
{
	if (document.getElementById("oLayerSwitch"))
	{
		document.getElementById("contentTopSectionFrame").style.display = "block";
		document.getElementById("culture").style.display = "block";
	}
}

function _initHeaderAddress()
{
	var oDivHeader = document.getElementById('contentHeader');
	var sHtml = '';
	
	if(EcommercePageCulture)
	{
		switch(EcommercePageCulture.toLowerCase())
		{
			case 'fr-ca':
				sHtml = '<p>655, Boul Maloney Est<br>Gatineau (Qu&eacute;bec) J8P 1G3<br><span style="color:#FFFFFF">819-669-6111</span> Fax : 1-819-663-2348';
				sHtml += '&nbsp;&nbsp;<a href="http://maps.google.ca/maps?f=q&hl=fr&geocode=&q=655,+Boul+Maloney+Est,+Gatineau+(Qu%C3%A9bec)+J8P+1G2&sll=45.571268,-73.699909&sspn=0.009854,0.027294&ie=UTF8&z=16&iwloc=addr" target="_blank"><img src="/ecom_theme/img/carte.gif" border="0" alt="Carte" title="Carte" align="middle"></a></p>'
				break;
				
			case 'en-us':
				sHtml = '<p>655, Boul Maloney Est<br>Gatineau (Quebec) J8P 1G3<br><span style="color:#FFFFFF">819-669-6111</span> Fax : 1-819-663-2348';
				sHtml += '&nbsp;&nbsp;<a href="http://maps.google.ca/maps?f=q&hl=en&geocode=&q=655,+Boul+Maloney+Est,+Gatineau+(Qu%C3%A9bec)+J8P+1G2&sll=45.571268,-73.699909&sspn=0.009854,0.027294&ie=UTF8&z=16&iwloc=addr" target="_blank"><img src="/ecom_theme/img/map.gif" border="0" alt="Map" title="Map" align="middle"></a></p>'
				break;
		}
	}
	
	if(oDivHeader)
	{
		oDivHeader.innerHTML = sHtml;
	}
}

function _initTopSubNavigation()
{
	var sStyleTopNavigation = '';
	
	if(_skCMSCurrentPage_frca == '/default.aspx' || _skCMSCurrentPage_enus == '/default.aspx')
	{
		
		sStyleTopNavigation = '<style>';
		//
		// div#cartInformation
		sStyleTopNavigation += 'div#cartInformation {top:-85px;left:766px;}';
		//
		// table#oTableSubNav
		sStyleTopNavigation += 'ul#secondaryNav{display:none;visibility:hidden;}';
		
		sStyleTopNavigation += '</style>';
		
		document.write(sStyleTopNavigation);
		
	}
}

