// Script for :hover to work in ie

sflHover = function() {
        var sfEls = document.getElementById("links").getElementsByTagName("li");
        for (var i=0; i<sfEls.length; i++) {
                sfEls[i].onmouseover=function() {
                        this.className+=" sflhover";
                }
                sfEls[i].onmouseout=function() {
                        this.className=this.className.replace(new RegExp(" sflhover\\b"), "");
                }
        }
}
if (window.attachEvent) window.attachEvent("onload", sflHover);
