	$(document).ready( function() { 
	$('.tablesorter').tablesorter();
		$(".tablesorter tbody tr").mouseover(function() { 
			$(this).addClass("over");
		}).mouseout(function() {
			$(this).removeClass("over");
		});
});