$(document).ready(function() {
	// Records table highliting
	$('table.records a').click(function() {
		var parent = $(this).parents('tr');
		parent.addClass('hilite');
	});

	// Table alternating rows
	$("table tr:nth-child(even)").addClass("even");
});

