// JavaScript Document

function showNav(whichnav) {
	//alert("start");
	thisnav = document.getElementById(whichnav);
	thisnav.style.display = "block";
	thisnav.style.zIndex = "99999";
}
function hideNav(whichnav) {
	//alert("start");
	thisnav = document.getElementById(whichnav);
	thisnav.style.display = "none";
	thisnav.style.zIndex = "3";
}

