$(document).ready(function(){
    $('div.table-content table thead tr th:first').addClass('first-header');    
    $('div.table-content table thead tr th:last').addClass('last-header');

    $('div.table-content table tbody tr:odd').addClass('first-row');    
    $('div.table-content table tbody tr:even').addClass('second-row');   
    $("#the-table").tablesorter();
});
