// JavaScript Document
startList = function()
{
    // function getQueryStringParm(key)
    // {
    //     key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
    //     var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");
    //     var qs = regex.exec(window.location.href);
    //     if(qs == null) return "/homeTextTest.html";
    //     else return qs[1];
    // }
    // document.getElementById("content").src = getQueryStringParm("fn");


    if (document.all&&document.getElementById)
    {
        navRoot = document.getElementById("nav");
        for (i=0; i<navRoot.childNodes.length; i++)
        {
            node = navRoot.childNodes[i];
            if (node.nodeName == "LI")
            {
                node.onmouseover = function() { this.className = this.className+" stuff";               }
                node.onmouseout  = function() { this.className = this.className.replace(" stuff", "");  }
            }
        }
    }
}
window.onload=startList;
