var columns = document.getElementsByTagName('td');
for (var i = 0; i < columns.length; i++) {
	columns[i].onmouseover = function() {
		this.className += ' hilite';
	}
	columns[i].onmouseout = function() {
		this.className = this.className.replace('hilite', '');
	}
}

