var t;
function startTimer(){
	t = setTimeout("hideAll()", 150);
}
function stopTimer(){
	clearTimeout(t);
}

function locationsSubnav(){
	stopTimer();
	hideAll();
	document.getElementById("Locations_Subnav").style.top="338px";
	document.getElementById("Locations_Subnav").style.left="321px";
}

function servicesSubnav(){
	stopTimer();
	hideAll();
	document.getElementById("Services_Subnav").style.top="378px";
	document.getElementById("Services_Subnav").style.left="321px";
}

function aboutSubnav(){
	stopTimer();
	hideAll();
	document.getElementById("About_Subnav").style.top="418px";
	document.getElementById("About_Subnav").style.left="321px";
}

function hideAll(){
	document.getElementById("Locations_Subnav").style.top="-1000px";
	document.getElementById("Locations_Subnav").style.left="-1000px";
	document.getElementById("About_Subnav").style.top="-1000px";
	document.getElementById("About_Subnav").style.left="-1000px";
	document.getElementById("Services_Subnav").style.top="-1000px";
	document.getElementById("Services_Subnav").style.left="-1000px";
}
