﻿function swap(){
	if (this.getElementsByTagName('UL')[0]){
		//this.className="msieFix"
		this.getElementsByTagName('UL')[0].style.display="block";
		this.getElementsByTagName('UL')[0].style.fontSize="12px";
		this.getElementsByTagName('UL')[0].style.position="absolute";
		this.getElementsByTagName('UL')[0].style.left="0";
	}
}
function swapBack(){
	//when moving off any menu item, if on a certain page with a fixed menu then show it
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	//alert(sPage.substring(0, sPage.length-5));
	if (this.getElementsByTagName('UL')[0]){
		//this.className="trigger"
		document.getElementById('About-ETS-UL').style.display="none";
		document.getElementById('What-We-Do-UL').style.display="none";
		document.getElementById('Customer-Delight-UL').style.display="none";
		document.getElementById('News-UL').style.display="none";
		//if this.id has a ul then
		
		if (this.id==sPage.substring(0, sPage.length-5)){
			//alert('this.id=' + this.id + ' page=' + sPage.substring(0, sPage.length-5));
			document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0].style.display="block";
		}
		else
		{
			if (document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0]){
				document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0].style.display="block";
			}
		}
	}
	else
	{
		document.getElementById('About-ETS-UL').style.display="none";
		document.getElementById('What-We-Do-UL').style.display="none";
		document.getElementById('Customer-Delight-UL').style.display="none";
		document.getElementById('News-UL').style.display="none";
		if (this.id==sPage.substring(0, sPage.length-5)){
			if (document.getElementById(sPage.substring(0, sPage.length-5) + '-UL')){
				document.getElementById(sPage.substring(0, sPage.length-5) + '-UL').style.display="block";
			}
		}
		else
		{
			if (document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0]){
				document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0].style.display="block";
			}
		}
	}
}
function swapfocus(){
	if (this.getElementsByTagName('UL')[0]){
		//this.parentNode.parentNode.parentNode.className="msieFix"
		this.getElementsByTagName('UL')[0].style.display="block";
		this.getElementsByTagName('UL')[0].style.fontSize="12px";
		this.getElementsByTagName('UL')[0].style.position="absolute";
		this.getElementsByTagName('UL')[0].style.left="0";
	}
}
function swapblur(){
	var sPath = window.location.pathname;
		var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
		//alert(sPage.substring(0, sPage.length-5));
	if (this.getElementsByTagName('UL')[0]){
		//this.className="trigger"
		document.getElementById('About-ETS-UL').style.display="none";
		document.getElementById('What-We-Do-UL').style.display="none";
		document.getElementById('Customer-Delight-UL').style.display="none";
		document.getElementById('News-UL').style.display="none";
		if (this.id==sPage.substring(0, sPage.length-5)){
			document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0].style.display="block";
		}
		else
		{
			if (document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0]){
				document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0].style.display="block";
			}
		}
	}
	else
	{
		document.getElementById('About-ETS-UL').style.display="none";
		document.getElementById('What-We-Do-UL').style.display="none";
		document.getElementById('Customer-Delight-UL').style.display="none";
		document.getElementById('News-UL').style.display="none";
		if (this.id==sPage.substring(0, sPage.length-5)){
			document.getElementById(sPage.substring(0, sPage.length-5) + '-UL').style.display="block";
		}
		else
		{
			if (document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0]){
				document.getElementById(sPage.substring(0, sPage.length-5)).getElementsByTagName('UL')[0].style.display="block";
			}
		}
	}
}
function TJK_dropDown(){// v1.0 Copyright (c) 2006 TJKDesign - Thierry Koblentz
	if (document.getElementById){	
		var LI = document.getElementById('menu').getElementsByTagName("li");
		var zLI= LI.length;
		for(var k=0;k<zLI;k++){
			if(LI[k].id){
			LI[k].className="trigger";
			}
			if(LI[k].parentNode.parentNode.className=="trigger"){LI[k].firstChild.onfocus=swapfocus;LI[k].firstChild.onblur = swapblur}
			if(LI[k].className=="trigger"){LI[k].onmouseover=swap;LI[k].onmouseout=swapBack}
		}
	}
}

window.onload=function(){TJK_dropDown();}