window.onload = function()
{
	if (document.all && document.getElementById) {
		rolloverRoot = document.getElementById("rollover");
		for (i=0; i < rolloverRoot.firstChild.childNodes.length; i++) {
			node = rolloverRoot.firstChild.childNodes[i];
			if (node.nodeName=="TR") {
				node.onmouseover = function()
				{
					this.className+=" over";
				};
				node.onmouseout=function()
				{
					this.className=this.className.replace(" over", "");
				};
			}
		}
	}
};