function initMenu()
{
var nodes = array();
if (document.getElementById("menu") && document.getElementById("menu").getElementsByTagName("li")) nodes = document.getElementById("menu").getElementsByTagName("li");   	
	for (var i=0; i<nodes.length; i++)
	{
		nodes[i].onmouseover = function()
		{
			this.className += " hover";
		}
		nodes[i].onmouseout = function()
		{
			this.className = this.className.replace(" hover", "");
		}
	}
	var nodes = array(); 
if (document.getElementById("column2")) nodes = document.getElementById("column2").getElementsByTagName("li");
	for (var i=0; i<nodes.length; i++)
	{
		nodes[i].onmouseover = function()
		{
			this.className += " hover";
		}
		nodes[i].onmouseout = function()
		{
			this.className = this.className.replace(" hover", "");
		}
	}
}
if (document.all && !window.opera) attachEvent("onload", initMenu);
