startHighlight = function()
{				
	
    if (document.all && document.getElementById)
    {
        var table_array = new Array();
        var allID = document.all;
        var index = 0;
        for (i = 0; i<allID.length; i++) {
            if (allID[i].tagName == 'TABLE') {
                if (allID[i].id.indexOf('DataGrid') != -1) {
                    table_array[index++] = allID[i].id;
                }
            }
        }
	    for (j = 0; j < table_array.length; j ++)
	    { 
		    navRoot = document.getElementById(table_array[j]);
		    //window.alert(j);
				
		    // Get a reference to the TBODY element 
		    tbody = navRoot.childNodes[0];
		    var saveMe = "";
				
		    for (i = 1; i < tbody.childNodes.length; i++)
		    {
			    node = tbody.childNodes[i];
			    if (node.nodeName == "TR")
			    {
					if (this.className != "searchPager") {
						node.onmouseover=function()
						{
							saveMe = this.className;
							this.className = "over";								
						}
							
						node.onmouseout=function()
						{
							this.className = saveMe;
						}
					}
			    }
		    }
	    }
    }
}