/* IE6 hover sur les li */
metabarre_sfHover = function() {
 if ($("lst_mnu_1_1") != null) {
 var sfEls = $("lst_mnu_1_1").getElementsByTagName("LI");
 for (var i=0; i<sfEls.length; i++) {
  sfEls[i].onmouseover=function() {
  this.className+=" Offrehover";
 }
   sfEls[i].onmouseout=function() {
   this.className=this.className.replace(new RegExp(" Offrehover\\b"), "");
 }
 }
 }
}
if (window.attachEvent) window.attachEvent("onload", metabarre_sfHover);