// JavaScript Document

function liteItUp(theid)
{
    var theLink = document.getElementById(theid);

    theLink.className = " liteup";

    navRoot = document.getElementById("nav");
}

function unLiteItUp(theid)
{
    var theLink2 = document.getElementById(theid);

    theLink2.className = " noliteup";

    navRoot = document.getElementById("nav");
}

function startList()
{
    navRoot = document.getElementById("nav");
  if (navRoot != null)
    for (i = 0; i < navRoot.childNodes.length; i++)
    {
        node = navRoot.childNodes[i];

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

window.onload = startList;

