$(function(){
	$("th:nth-child(odd)").addClass("odd");
	$("tr:nth-child(even)").addClass("even");
	
	$("table.rank tr:not(:first-child)").mouseover(function(){
		$(this).addClass("table.rank hover");
	}).mouseout(function(){
		$(this).removeClass("table.rank hover");
	})
})

