var liId
function showmenu(elmnt)
{
document.getElementById(elmnt).style.display="block";
liId = "li"+elmnt;
document.getElementById(liId).style.color="#cccccc";
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.display="none";
liId = "li"+elmnt;
document.getElementById(liId).style.color="#888888";
}
