function hoverRow(row) {
	num_td = row.getElementsByTagName("TD");
	var i;
	for (i=0; i<=num_td.length; i++) {
		num_td[i].style.backgroundColor = "72a4cf";
	}
}

function leaveRow(row) {
	num_td = row.getElementsByTagName("TD");
	var color;
	var str = row.innerHTML;
	if (str.match("odd")) {
		color = "white";
	} 
	if (str.match("even")) {
		color = "DCDCDC";
	}
	var i;
	for (i in num_td) {
		num_td[i].style.backgroundColor = color;
	}
}