<!-- only required because IE 6 is a non W3C compliant piece of shit -->
startList = function()
{
        if (document.all&&document.getElementById)
        {
                cssdropdownRoot = document.getElementById("navbar");

                for (x=0; x<cssdropdownRoot.childNodes.length; x++)
                {
                        node = cssdropdownRoot.childNodes[x];

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

if (window.attachEvent)
        window.attachEvent("onload", startList)
else
        window.onload=startList;

<!-- only required because IE 6 is a non W3C compliant piece of shit -->

function sf(){document.f.q.focus();}
