
function hmenuhover()
{
	if(!document.getElementById("clients"))
		return;
	var lis = document.getElementById("clients").getElementsByTagName("td");
	for (var i=0;i<lis.length;i++)
	{
		lis[i].onmouseover=function(){this.className+=" over";}
		lis[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" over\\b"), "");}
	}

}
if (window.attachEvent)	window.attachEvent("onload", hmenuhover);

function hmenuhover1()
{
	if(!document.getElementById("tab56"))
		return;
	var lis = document.getElementById("tab56").getElementsByTagName("tr");
	for (var i=0;i<lis.length;i++)
	{
		lis[i].onmouseover=function(){this.className+=" over";}
		lis[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" over\\b"), "");}
	}

}
if (window.attachEvent)	window.attachEvent("onload", hmenuhover1);

