


/* Row Hiliter */

function hiliter() {
	if (document.getElementById('reserveSlots')) {
		var tableRows = new Array();
		tableRows = document.getElementById('reserveSlots').getElementsByTagName('tbody')[0].getElementsByTagName('tr');
		for (var n = 0; n < tableRows.length; n++) {
			tableRows[n].onmouseover = function() {
				this.className = 'hover';
			}
			tableRows[n].onmouseout = function() {
				this.className = '';
			}
		}
	}
}




window.onload = function() {
	hiliter();
}