/* THIS IS FOR IE EMMULATION ONLY */
 
var click;
iexp = function() {
        /* reset mbar up a little */
        //var tmp = document.getElementById("menuh-container");
        //tmp.style.top="-15px";
        var sfEls = document.getElementById("menuh").getElementsByTagName("LI");
        for (var i=0; i<sfEls.length; i++) {
                sfEls[i].onmouseover=function() {
                        this.className+=" sfhover";
                        this.style.backgroundColor = "white";


                }
                sfEls[i].onmouseout=function() {
                        this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
                        this.style.backgroundColor = "transparent";

                }
        }
}
 

if (window.attachEvent){
        window.attachEvent("onload", iexp);
}
