<!--// makeHilites 1.0 by Michael Honey, www.zooz.com.au 2004. We can't stop you stealing it, but we ask that you maintain attributionfunction makeHilites() {	//tables to be highlighted are given class "hilite"    var docTables = document.getElementsByTagName("table");    var  myTableArray = new Array();    var count = 0;    var iRowCount = 0;    var iColNumber = 5	// make list of applicable tables    /*	for(var dt = 0; dt < docTables.length; dt++){		alert(8);           if ((docTables[dt].getAttributeNode("class").value == "portfolio") ){  				             myTableArray[count] =docTables[dt];             // IE 5 Mac doesn't support array.push!             count++;           }    }	*/	myTableArray[0] = document.getElementById("spud");	     for(var tb = 0; tb < myTableArray.length; tb++){                         var myTable = myTableArray[tb];         var myTableHeaders = myTable.getElementsByTagName("th");         var myCells= myTable.getElementsByTagName("td");         var myRows= myTable.getElementsByTagName("tr");                  var oTextCell= null;                for ( var i=0; i< myRows.length; i++){			var theRow = myRows[i];						theRow.onmouseover=function() {					this.className+=" over";				}				theRow.onmouseout=function() {					this.className=this.className.replace(" over", "");				}       }                           for (var c = 0; c < myCells.length; c++){						iRowCount = Math.floor(c/(iColNumber+1));						if (iRowCount == myTableHeaders.length)				return;			            var  theCell = myCells[c];            if (theCell.id != ""){            				theCell.h = myTableHeaders[iRowCount].id;				           				theCell.onmouseover = function(){					oTextCell = document.getElementById(this.h + "_text");					oTextCell.innerHTML = this.id;				}							theCell.onmouseout = function(){					oTextCell = document.getElementById(this.h + "_text");					oTextCell.innerHTML = '';							}			}       }     }}//-->