window.onload = function ()
	{
	if (typeof fadeInit == "function")
		{
		fadeInit();
		}
	if (document.all && document.getElementById)
		{
		addHover('main');
		}
	}
function addHover(whichDiv)
	{
	for (var k = 0; k < document.getElementById(whichDiv).childNodes.length; k++)
		{
		if (document.getElementById(whichDiv).childNodes[k].nodeName == "TBODY")
			{
			for (var j = 0; j < document.getElementById(whichDiv).childNodes[k].childNodes.length; j++)
				{
				if (document.getElementById(whichDiv).childNodes[k].childNodes[j].nodeName == "TR")
					{
					var navRoot = document.getElementById(whichDiv).childNodes[k].childNodes[j];
					}
				}
			}
		}
	for (var i = 0; i < navRoot.childNodes.length; i++) 
		{
		var node = navRoot.childNodes[i];
		if (node.nodeName == "TD") 
			{
			node.onmouseover = function() 
				{
				this.className += " over";
				}
			node.onmouseout = function() 
				{
				this.className = this.className.replace (" over", "");
				}
			}
		}
	}