$(document).ready(function()
{
  $('div.results li').live( 'hover',function() // Display hand (hyperlink) pointer
  {
    var link = $(this).find( 'a.scorecard' ).attr('href');

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

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