function initMenu()
{	var rows = document.getElementById('navigation').rows;
	var x;
	for (var j=0; j < rows.length; j++)
	{	x = rows[j].cells;
		for (var i=0; i < x.length; i++)
		{	x[i].onmouseover = menu_over;
			x[i].onmouseout = menu_out;
			x[i].onclick = menu_click;
		}
	}
}
function menu_over()
{	this.style.backgroundColor = '#333333';
	this.firstChild.style.color = "#FFFFFF";
}
function menu_out()
{	this.style.backgroundColor = '#CCCCCC';
	this.firstChild.style.color = "#006633";
}
function menu_click()
{	document.location.assign(this.firstChild.href);
}
initMenu();

