function showNav(id)
{
	document.getElementById(id).style.display = "";
}

function hideNav(id)
{
	document.getElementById(id).style.display = "none";
}