function menuover(id) 
{
 document.getElementById(id).style.backgroundColor = "#dd5627";
}

function menuout(id) 
{
 document.getElementById(id).style.backgroundColor = "#87b73d";
}