startlist = function()
    {
    if (document.all && document.getElementById)
        {
        var lists = document.getElementsByTagName("ul");

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

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