function hoverMenu(aMenuNumber, aClassName)
{
  var lMenu = window.document.getElementById("mnu" + aMenuNumber);
  if(lMenu)
  {
    if(lMenu.style.volume == "0")
    {
      lMenu.className = aClassName + "_hover";
    }
  }
}

// ------------------------------------------------------------------
function exitMenu(aMenuNumber, aClassName)
{
  var lMenu = window.document.getElementById("mnu" + aMenuNumber);
  if(lMenu)
  {
    if(lMenu.style.volume == "0")
    {
      lMenu.className = aClassName + "_off";
    }
  }
}

// ------------------------------------------------------------------
function selectMenu(aMenuNumber, aLang)
{
  var lSection = "";
  
  switch(parseInt(aMenuNumber))
  {
    case 1:
      lSection = "home";
      break;
    case 2:
      lSection = "about";
      break;
    case 3:
      lSection = "products";
      break;
    case 4:
      lSection = "solutions";
      break;
    case 5:
      lSection = "newsevents";
      break;
    case 6:
      lSection = "support";
      break;
    case 7:
      lSection = "contact";
      break;
    case 8:
      lSection = "login";
      break;
  }
  
  window.document.location = "index.php?s=" + lSection + "&lang=" + aLang;
}