


jQuery(document).ready(function() {


jQuery("table").tablesorter({ sortList: [[1, 0]] });  

   



       
               jQuery('.shirts tr').click(function() {
                   window.open(jQuery("a", this).attr('href'), 'newwin').focus();
                   return false;
               });

         
});


 
