if (document.all && document.getElementById && document.getElementById("tabRows"))
	{
	    if(document.getElementById("tabRows"))
	    {
	        navRoot = document.getElementById("tabRows");
	        tbody = navRoot.childNodes[0];
	        for(i = 1; i < tbody.childNodes.length; i++)
		        {
		        node = tbody.childNodes[i];
		        if(node.nodeName == "TR")
			        {
			        node.onmouseover=function()
				        {this.className = "over";};
			        node.onmouseout=function()
				        {this.className = this.className.replace("over", "");}}
			        }
	    }
	}
	function rowHighlight()
	{
	    if (document.all && document.getElementById)
	    {
	        navRoot = document.getElementById("tabRows");
	        tbody = navRoot.childNodes[0];
	        for(i = 1; i < tbody.childNodes.length; i++)
		        {
		        node = tbody.childNodes[i];
		        if(node.nodeName == "TR")
			        {
			        node.onmouseover=function()
				        {this.className = "over";};
			        node.onmouseout=function()
				        {this.className = this.className.replace("over", "");}}
			        }
	    }
	}
	function rowHighlight(id)
	{
	    if (document.all && document.getElementById)
	    {
	        navRoot = document.getElementById(id);
	        tbody = navRoot.childNodes[0];
	        for(i = 0; i < tbody.childNodes.length; i++)
		        {
		        node = tbody.childNodes[i];
		        if(node.nodeName == "TR")
			        {
			        node.onmouseover=function()
				        {this.className = "over";};
			        node.onmouseout=function()
				        {this.className = this.className.replace("over", "");}}
			        }
	    }
	}