////scripts for main menu

//////show/hide sub menus
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function navhide(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden";
}

