$(".result_table tbody tr").mouseenter(function(){
	  $(this).addClass('highlight_row');
	}).mouseleave(function(){
	   $(this).removeClass('highlight_row');
});
	
$(".result_table tbody tr").click(function(){
	  $(this).removeClass('highlight_row')
});
