
 function menuItemColor(bln,id)
  {
   if(false){


    if(bln)
     {
      document.getElementById(id).style.backgroundColor="#ffffff";
     }
    else
     {
      if (id=="item7" || id=="item8" || id=="item9" || id=="item10")
       {
         if(id=="item7" || id=="item8")
         {
            document.getElementById(id).style.backgroundColor="#F99100";
         }
         else
         {
            document.getElementById(id).style.backgroundColor="#F4EB00";
         }
            
       }
      else
       {
            document.getElementById(id).style.backgroundColor="#FAAF46";
       }
      
     }

}
  }
  



