function menuMouseOver(id)
{
  var box = document.getElementById(id);
  box.className = 'menuBoxHover';
}

function menuMouseOut(id)
{
  var box = document.getElementById(id);
  box.className = 'menuBox';
}