if (window.attachEvent) {
    var sHover = function() {
        $$(".dropdownitem").each(function (e) {
            e.onmouseover=function() {
                this.className+=" over";
            }
            e.onmouseout=function() {
                this.className=this.className.replace(new RegExp(" over\\b"), "");
            }
        });
    }
    window.attachEvent("onload", sHover);
}
