
function mOverMenu(menuItem)
{
  menuItem.style.cursor = 'hand';
  menuItem.style.borderColor = "#9d9d9d";
  menuItem.style.backgroundColor = "#f1f1f1";
  menuItem.style.color = "#000000";
}

function mOutMenu(menuItem)
{
  menuItem.style.cursor = 'default';
  menuItem.style.borderColor = "#dee0ea";
  menuItem.style.backgroundColor = "#dee0ea";
  menuItem.style.color = "#000000";
}

function mDown(url)
{
  window.location = url;
}


