$(document).ready(function () {
			   
	$('tbody tr').hover(function() {
	  $(this).addClass('hovered');
	}, function() {
	  $(this).removeClass('hovered');
	});

});