$(document).ready(function(){

$(".table-data tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".table-data tr:nth-child(odd)").addClass("altrow");
$(".table-data tr td:first-child, .table-data tr th:first-child").addClass("text-left");

});