$(function(){

	$(".zebra tr:nth-child(odd)").addClass("odd");
	$(".zebra tr:nth-child(even)").addClass("even");
	
});