$(document).ready(function(){
	$("tr").mouseover(function(){
		$(this).addClass("over");
	}).mouseout(function(){
		$(this).removeClass("over");
	});
$("table * tr:odd").addClass("odd");
});