function showMenu(divId){
   var e=eval(divId);
   e.style.backgroundColor='CEACA4';     
}
function hideMenu(divId)
{
   var e=eval(divId);
    e.style.backgroundColor='f3f3f3';     
}
