<!-- Begin Hide

var num_menus = 5;

function checkmenus()
{
  var x;
  for( x = 1; x <= num_menus; x++ ){
    document.getElementById( "menu" + x ).style.display = "none";
  }
}

//open a menu
function showMenu( ID )
{
  checkmenus();

  if( ID ){
    document.getElementById( "menu" + ID ).style.display = "block";
  }
}


ieHover = function() {
        var els = document.getElementById("menu").getElementsByTagName("LI");
        for( var i=0; i < els.length; i++ ){
                els[i].onmouseover=function() {
                        this.className+=" iehover";
                }
                els[i].onmouseout=function() {       
                        this.className=this.className.replace(new RegExp(" iehover\\b"), "");
                }
        }
}
if (window.attachEvent) window.attachEvent("onload", ieHover);

//window.onload = showMenu;
// End Hide
// -->
