$(document).ready(function(){
	//Zebra stripes for tables
	$("table tbody tr:odd").addClass('rowalt');
	//Row highlighting for tables
	$("table tbody tr").hover(
		function() {
			$(this).addClass('rowhighlight');
		},
		function() {
			$(this).removeClass('rowhighlight');
		}	
	);
});


