// Makes the Dropdowns work in IE6
function startList(navID) {
    if (document.all && document.getElementById)
    {
        navRoot = document.getElementById(navID);

        for (i = 0; i < navRoot.childNodes.length; i++)
        {
            node = navRoot.childNodes[i];

            if (node.nodeName == "DD")
            {
                node.onmouseover = function()
                {
                    this.className += " over";
                }
                node.onmouseout = function()
                {
                    this.className = this.className.replace(" over", "");
                }
            }
        }
    }
}

// jQuery Page Load function
$(document).ready(function() {
    startList("MainNav");
});
