$(document).ready(function()
{
  $('table.career tbody tr,table.history tbody tr').live( 'hover',function() // Display hand (hyperlink) pointer
  {
    var link = $(this).find( 'td a.scorecard' ).attr('href');

    if ( link != undefined )
    {
      $(this).css( 'cursor','pointer' );
    }
  } )
  .live( 'click',function() // Allow click
  {
    var link = $(this).find( 'td a.scorecard' ).attr('href');

    if ( link != undefined )
    {
      window.location.href=link;
    }
  } );

  $('table.career').addClass('sortable');
  $('table.career').tablesorter({ sortList: [[0,1]] });
  $('table.career').bind( 'sortEnd',function() { restripeTable( $(this) ); });
});
