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