$(document).ready(function(){
	$('table.stats').each(function(){
		$(this).children().children(':even').addClass('odd');
	});
});