$(document).ready(function() 
    { 
        $("#neighborhood_crime_totals")
            .tablesorter({widthFixed: true,sortList:[[5,1]]});
            
            
        $("#atlanta_crime")
        .tablesorter({widthFixed: true,sortList:[[9,1]]})
        .tablesorterPager({container: $("#pager")});
        
        $("#neighborhood_crime")
            .tablesorter({widthFixed: true,sortList:[[3,1]]})
            
            .tablesorterPager({container: $("#pager")}); 
        
    } 
); 
    