jQuery(document).ready(function() { 
   
   
   
   
   $("#resultsTable tbody tr").hover( 
     function() {  // mouseover 
          $(this).addClass('highlightedresult'); 
     }, 
     function() {  // mouseout 
          $(this).removeClass('highlightedresult'); 
     } 
   );


   
   
});
