﻿function SetTableRows() {
	$("table.GridView tr:odd").addClass("odd");
	$("table.GridView tr:even").addClass("even");

	$("table.GridView tr").hover(
		function () {
			$(this).toggleClass("highlighted");
		},
		function () {
			$(this).toggleClass("highlighted");
		}
	);
}

