<!--
    if(window.navigator.systemLanguage && !window.navigator.language) {
      function hoverIE() {
        var LI = document.getElementById("menu").firstChild;
        do {
          if (chercherUL(LI.firstChild)) {
            LI.onmouseover=afficher; LI.onmouseout=cacher;
          }
          LI = LI.nextSibling;
        }
        while(LI);
      }

      function chercherUL(UL) {
        do {
          if(UL) UL = UL.nextSibling;
          if(UL && UL.nodeName == "UL") return UL;
        }
        while(UL);
        return false;
      }

      function afficher() {
        var UL = chercherUL(this.firstChild);
        UL.style.display = "block"; UL.style.backgroundColor = "#d2233b";
      }
      function cacher() {
        chercherUL(this.firstChild).style.display = "none";
      }

      window.onload=hoverIE;
    }
//-->