$(document).ready(function(){
	$("table tr:odd").addClass("odd");
	$("table tr:even").addClass("even");
});