function MouseOutMenu(id)
{
  document.getElementById(id).style.backgroundColor='#000000';

}

function MouseOverMenu(id)
{
  document.getElementById(id).style.backgroundColor='#CC0000'
}