table sort default by desc

table sort default by desc

Hi,
 
records are displayed within table and currently default by asc.  How can i make it default by desc ?
 
Thanks
 
<script type="text/javascript">
$(document).ready(function() {
 $("#jobtable").tablesorter({
        // sort on the first column and third column, order asc
        sortList: [[0,0]]
     });
 
});
</script>