function initMenu() {
	//document.getElementById('sub1').style.display = "none";
	//document.getElementById('sub2').style.display = "none";
	//document.getElementById('sub3').style.display = "none";
	//document.getElementById('sub4').style.display = "none";
	var tr = window.location.pathname
	//alert("tr: " + tr);
	len = tr.length
	rs = 0
	for (i = len; i > 0; i--) {
	vb = tr.substring(i,i+1)
	//alert(vb);
	if (vb == "/" && rs == 0) {
	var strFileName = tr.substring(i+1,len)
	rs = 1
	}
	else {
	var strFileName = tr.substring(i,len)
	rs = 1	
	}
	} 
	//alert(strFileName);
	//var x;
	//for (x in document.links)
	//{
	//document.write(document.links[x].href + "<br />");
	//}
	//for (i=0; i<document.links.length; ++i) {
	  //alert(document.links[i].href + "<br />")
	  //strLink = document.links[i].href;
	  //strPage = document.URL;
	  //if (strLink == strPage) {
		//  document.links[i].style.color = "#EE4F00";
	  //}
	//}
	arrObject = document.getElementById('nav');
	arrLinks = arrObject.getElementsByTagName('a');
	
	for (i=0; i<arrLinks.length; ++i) {
		//if (arrLinks[i] == document.URL && arrLinks[i].id == "subtop0") {
		//	arrLinks[i].style.color = "#161A43";
		//	arrLinks[i].style.backgroundImage = "url('images/navbutton_over.gif')";
		//} else if (arrLinks[i] == document.URL) {
		//	arrLinks[i].style.color = "#EE4F00";
		//}
		
		for (j=0; j<=17; ++j) {
			if (arrLinks[i] == document.URL && arrLinks[i].id == "subtop" + j) {
				arrLinks[i].style.color = "#161A43";
				arrLinks[i].style.backgroundImage = "url('images/navbutton_over.gif')";
			} else if (arrLinks[i] == document.URL) {
				arrLinks[i].style.color = "#EE4F00";
			}	
		}
	}
	
	//landroverexp_21052007/fragile_earth.asp
	//alert(strFileName + "\nabout_us.asp");
	if (strFileName == "fragile_earth.asp" || strFileName == "testimonials.asp" || strFileName == "environment.asp" || strFileName == "about_the_area.asp" || strFileName == "co2-offset.asp" || strFileName == "about_us.asp" || strFileName == "corporate_clients.asp") {
		//alert("hi");
		document.getElementById('sub1').style.display = "block";
		document.getElementById('subtop1').style.backgroundImage = "url('images/navbutton_over.gif')";
		document.getElementById('subtop1').style.color = "#EE4F00";
	}
	if (strFileName == "whats_new.asp" || strFileName == "archive.asp" || strFileName == "new_vehicles.asp") {
		document.getElementById('sub2').style.display = "block";
		document.getElementById('subtop7').style.backgroundImage = "url('images/navbutton_over.gif')";
		document.getElementById('subtop7').style.color = "#EE4F00";
	}
	if (strFileName == "4x4_courses.asp" || strFileName == "hs_utilities.asp" || strFileName == "other_activities.asp" || strFileName == "cancellation_policy.asp" || strFileName == "activities.asp") {
		document.getElementById('sub3').style.display = "block";
		document.getElementById('subtop2').style.backgroundImage = "url('images/navbutton_over.gif')";
		document.getElementById('subtop2').style.color = "#EE4F00";
	}
	if (strFileName == "contact_us.asp" || strFileName == "directions.asp") {
		document.getElementById('sub4').style.display = "block";
		document.getElementById('subtop16').style.backgroundImage = "url('images/navbutton_over.gif')";
		document.getElementById('subtop16').style.color = "#EE4F00";
	}
	if (strFileName == "special_events.asp" || strFileName == "valentines_day.asp" || strFileName == "stagdo.asp" || strFileName == "hendo.asp") {
		document.getElementById('sub5').style.display = "block";
		document.getElementById('subtop9').style.backgroundImage = "url('images/navbutton_over.gif')";
		document.getElementById('subtop9').style.color = "#EE4F00";
	}
}