// ===================================================================
// Author: Mark Chitty
// Date: 17/12/2005
// Copyright 2005 Conissaunce Limited
// ===================================================================

ieHover = function() {

    var els = document.getElementById("nav").getElementsByTagName("LI");
    for (var i = 0; i < els.length; i++) {
        els[i].onmouseover = function() {
            this.className += " ieHover";
        }
        els[i].onmouseout = function() {
            this.className = this.className.replace(/ ieHover\b/, "");
        }
    }
}

if (window.attachEvent) window.attachEvent("onload", ieHover);
