<!--
	var ns4 = (document.layers)? true:false;
	var ie4 = (document.all)? true:false;
	var dom = (document.getElementById) ? true:false;	
	var imgL, imgT, imgR, divB, divR;
	var currentDiv;
	
	document.onmousemove = mouseMove
	if (!ie4) document.captureEvents(Event.MOUSEMOVE)	
	
	function mouseMove(e){
		if (ns4) {
			var x = e.pageX;
			var y = e.pageY;
		}
		else if (ie4) {
			var x = event.x;
			var y = event.y;
		}
		else if (dom){
			var x = e.pageX;
			var y = e.pageY;		
		}
	menuOff(x, y);
	}
	
	function menuOff(xcord,ycord){
		if ( (xcord < imgL) || (ycord > divB) || ((ycord < imgT) && (xcord > imgR)) || (xcord > divR) ){
			hideAll();
		}
	}	

	function trigger(objDiv){
		hideAll();
		currentDiv = objDiv;
		if (objDiv == "divAbout"){
			imgL = 320;
			imgT = 0;
			imgR = 420; 
			divB = 175; 
			divR = 420; 
			moveDiv(objDiv, 63, imgL);
		}
		if (objDiv == "divServices"){
			imgL = 420;
			imgT = 0;
			imgR = 520;
			divB = 175;
			divR = 520;
			moveDiv(objDiv, 63, imgL);
		}
		if (objDiv == "divClients"){
			imgL = 520;
			imgT = 0;
			imgR = 620;
			divB = 175;
			divR = 620;
			moveDiv(objDiv, 63, imgL);	
		}	
		if (objDiv == "divContact"){
			imgL = 620;
			imgT = 0;
			imgR = 720;
			divB = 175;
			divR = 720;
			moveDiv(objDiv, 63, imgL);
		}				
	}
		
	// Show/Hide functions for non-pointer layer/objects
	function showDiv(id) {
		if (ns4) document.layers[id].visibility = "show";
		else if (ie4) document.all[id].style.visibility = "visible";
		else if (dom) document.getElementById(id).style.visibility = "visible";
	}
	
	function hideDiv(id) {
		if (ns4) document.layers[id].visibility = "hide";
		else if (ie4) document.all[id].style.visibility = "hidden";
		else if (dom) document.getElementById(id).style.visibility = "hidden";
	}
	
	function moveDiv(id, posTop, posLeft) {
		if (ns4) {
			document.layers[id].top = posTop;
			document.layers[id].left = posLeft;
		}			
		else if (ie4) {
			document.all[id].style.top = posTop;
			document.all[id].style.left = posLeft;				
		}
		else if (dom) {
			document.getElementById(id).style.top = posTop;
			document.getElementById(id).style.left = posLeft;
		}

		showDiv(id);		
	}
		
	function hideAll(){
		hideDiv('divAbout');
		hideDiv('divServices');
		hideDiv('divClients');
		hideDiv('divContact');
		currentDiv = null;
	}
	
	function rollOn(imgName, divName) {
		if (document.images) 
			if (dom)
				document.getElementById(imgName).src = eval(imgName + "on.src");
			else if (ns4)
				document.layers[currentDiv].document[imgName].src = eval(imgName + "on.src");
			else if (ie4)
				document[imgName].src = eval(imgName + "on.src");				
	}
	
	function rollOff(imgName, divName) {
		if (document.images) 
			if (dom)
				document.getElementById(imgName).src = eval(imgName + "off.src");
			else if (ns4)
				document.layers[currentDiv].document[imgName].src = eval(imgName + "off.src");
			else if (ie4)
				document[imgName].src = eval(imgName + "off.src");				
	}
	
	if (document.images) {
		 
		 var Nav_Locationon = new Image();
		 Nav_Locationon.src = "../images/But_Location_On.gif";
		 var Nav_Locationoff = new Image();
		 Nav_Locationoff.src = "../images/But_Location_Off.gif";
		 
		 var Nav_Historyon = new Image();
		 Nav_Historyon.src = "../images/But_History_On.gif";
		 var Nav_Historyoff = new Image();
		 Nav_Historyoff.src = "../images/But_History_Off.gif";		 
		 
		 var Nav_Newson = new Image();
		 Nav_Newson.src = "../images/But_InTheNews_On.gif";
		 var Nav_Newsoff = new Image();
		 Nav_Newsoff.src = "../images/But_InTheNews_Off.gif";

		 var Nav_Transporton = new Image();
		 Nav_Transporton.src = "../images/But_Transport_On.gif";
		 var Nav_Transportoff = new Image();
		 Nav_Transportoff.src = "../images/But_Transport_Off.gif";
		 
		 var Nav_Warehouseon = new Image();
		 Nav_Warehouseon.src = "../images/But_Warehouse_On.gif";
		 var Nav_Warehouseoff = new Image();
		 Nav_Warehouseoff.src = "../images/But_Warehouse_Off.gif";		 
		 
		 var Nav_Testimonialson = new Image ();
		 Nav_Testimonialson.src = "../images/But_Testimonials_On.gif";
		 var Nav_Testimonialsoff = new Image ();
		 Nav_Testimonialsoff.src = "../images/But_Testimonials_Off.gif";
		 
		 	 
		 var Nav_Contacton = new Image ();
		 Nav_Contacton.src = "../images/But_ContactForm_On.gif";
		 var Nav_Contactoff = new Image ();
		 Nav_Contactoff.src = "../images/But_ContactForm_Off.gif";				 

		 			 
	}
//-->