// Define global variables
var timerID2 = null;
var timerOn2 = false;
// Change this to the time delay that you desire
var timecount2 = 1000;
function hideAll() {
hide_close_btn("subMenu1");
hide_close_btn("subMenu2");

//Put all layers used in the nav here.
//Copy the hideLayer() function above.
}

function startTime2() {
if (timerOn2 == false) {
timerID2=setTimeout( "hideAll()" , timecount2);
timerOn2 = true;

}
}

function stopTime2() {

if (timerOn2) {
clearTimeout(timerID2);
timerID2 = null;
timerOn2 = false;

}
}
function hideDrop(){
	hide_close_btn("jumpMenu");
	hide_close_btn("loc");

}
function showDrop(){
	show_close_btn("jumpMenu");
	show_close_btn("loc");
}