jQuery(document).ready(function(){

jQuery("table tr:first-child").addClass("top");

jQuery("table tr:last").addClass("bottom");

jQuery("table tr th:first-child").addClass("first");

jQuery("table tr td:first-child").addClass("first");

jQuery("table tr td:first-child").addClass("first");

jQuery("table tr th:last-child").addClass("last");

jQuery("table tr td:last-child").addClass("last");

jQuery("table tr td:nth-child(odd)").addClass("odd");

jQuery("table tr:nth-child(even)").addClass("second");

});
