<!--//--><![cdata[//><!--  
function menufix() {
 var sfels =window.document.getElementById("TopMenu").getElementsByTagName("li");
 for (var i=0; i<sfels.length; i++) {
  sfels[i].onmouseover=function() {
  this.classname+=(this.className.length>0? " ": "") + "sfhover";
  }
  sfels[i].onmousedown=function() {
  this.className+=(this.className.length>0? " ": "") + "sfhover";
  }
  sfels[i].onmouseup=function() {
  this.className+=(this.className.length>0? " ": "") + "sfhover";
  }
  sfels[i].onmouseout=function() {
  this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"),"");
  }
 }
}
window.onload=menufix;//--><!]]>   