$(function(){

	

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

});
