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