$(document).ready(function() 
    { 
      // table sorter
	  $("#tableSort").tablesorter( {sortList: [[0,0]]} ); 
      
	  // zebra table script
	  $("table.zebra").find("tr:nth-child(even)").each(
        function(i) {
          if( 0 == $(this).find("th").length ) {
            $(this).addClass("even");
          }
        }
      );
  } 
);

