// IE5+ Menu rollover hack code:
window.onload = function() {
        if (document.all&&document.getElementById) {

                navRoot = document.getElementById("navList");
                navLists = navRoot.getElementsByTagName('LI');

                for (i=0; i<navLists.length; i++) {
                        navLists[i].onmouseover = function() {
                                this.className += " over";
                                this.style.backgroundColor = '#e5e5e5';
                        }

                        navLists[i].onmouseout = function() {
                                this.className=this.className.replace(" over", "");
                                this.style.backgroundColor = '';
                        }
                }
        }
}
