function startList()
{
	if (document.getElementById)
	{
		navRoot = document.getElementById("java");
		if(navRoot)
		{
    		for (var i=0; i<navRoot.childNodes.length; i++)
    		{
    			node = navRoot.childNodes[i];
    			if (node.nodeName.toLowerCase() == "li")
    			{
    				node.onmouseover = function()
    				{
    					this.className += " over";
    //					alert(this.className);
    				}
    				node.onmouseout = function()
    				{
    					this.className = this.className.replace(" over", "");
    //					alert(this.className);
    				}
    			}
    		}
		}
	}
}

$(document).ready(function() {startList();});
