


	var navActive;   //Name of active navigation
	var timerID=100;

	function setTimer(navInput) {
		if (document.getElementById) {
	    navActive=navInput;
			timerID = setTimeout('hideMenu(navActive)', 100);
		}
	}

	function stopTimer() {
    	   	clearTimeout(timerID);
	}

	//Simple function to turn on a non-absolutely positioned <DIV>
	function showMenu(navInput) {
		if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Mac") == -1 ) {
			if (document.getElementById) {
		
				hideMenu('experience');
				hideMenu('capabilities');
				/*hideMenu('brandspotlight');
				hideMenu('brandiq');
				hideMenu('hottopics');*/		
				hideMenu('contactus');
				//these calls ensure that all menus are turned off before 1 is turned on - in case the onmouseout wasnt triggered somehow
		
				var testie='M' + navInput;
				var objEl=document.getElementById(navInput);
				var lLeft = 0;
				var lTop = objEl.offsetHeight+3;
				if (document.all){
					lLeft=10;
					lTop=lTop+2;
				}//of if
			
				while (objEl.tagName != 'BODY') {
					lLeft += objEl.offsetLeft;
					lTop += objEl.offsetTop;
					objEl = objEl.offsetParent;
				}//of while
				document.getElementById(testie).style.display = "block";
				document.getElementById(testie).style.left = parseInt(lLeft) + "px";
				document.getElementById(testie).style.top = parseInt(lTop) + "px";
				document.getElementById(navInput + '1').style.color="#993300";	
			}//of if
		}//of if
	}//of function

	function hideMenu(navInput) {
		if (document.getElementById) {
			var testie='M' + navInput;
			document.getElementById(testie).style.display = "none";
			document.getElementById(navInput + '1').style.color="black";			
		}//of if
	}//of function
