  function MenuCellOver(item)
  {
    if(item == 1)
    {
      document.getElementById('menucell1').style.backgroundColor = '#ed8b00';
    }
    if(item == 2)
    {
      document.getElementById('menucell2').style.backgroundColor = '#ed8b00';
    }
    if(item == 3)
    {
      document.getElementById('menucell3').style.backgroundColor = '#ed8b00';
    }    
  }
  
  function MenuCellOut(item)
  {
    if(item == 1)
    {
      document.getElementById('menucell1').style.backgroundColor = 'transparent';
    }
    if(item == 2)
    {
      document.getElementById('menucell2').style.backgroundColor = 'transparent';    
    }
    if(item == 3)
    {
      document.getElementById('menucell3').style.backgroundColor = 'transparent';    
    }    
  }
