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