$(document).ready(function(){
	$("td:first-child").addClass("first-child");
	$("th:first-child").addClass("first-child");
	$("tr:nth-child(odd)").addClass("odd");
	$("th:nth-child(odd)").addClass("odd");
	$("td:nth-child(odd)").addClass("odd");
	$("th:nth-child(even)").addClass("even");
	$("td:nth-child(even)").addClass("even");
	$("tr:nth-child(even)").addClass("even");
	$("th:last-child").addClass("last-child");
	$("td:last-child").addClass("last-child");
	$("th:nth-child(2)").addClass("cell-two");
	$("td:nth-child(2)").addClass("cell-two");
	$("td:nth-child(3)").addClass("cell-three");
  });

