$(document).ready(function(){
  $("table td:first-child").addClass("first");
  $("table th:first-child").addClass("first");
  $("table tr:even").addClass("tr-odd-1");
  $("table tr:odd").addClass("tr-even-1");
});
