function highlight(table) {
	table.className="on";//rollover class
}
function unhighlight(table) {//normal class
	table.className="off";
}
