/*
Tablesorter JQuery plugin
http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/documentation/#tablesorter
May 28, 2009 by Amy Rogers
 */
 
 /* When the table is updated with a new file, change the id number to the new table's id */
 
jQuery(document).ready(function($){
// call the tablesorter plugin
$(".wp-table-reloaded-id-5").tablesorter({
//sort on the first column, order asc
sortList: [[0,0]]
});
});

