$(document).ready(function() {
	$("table tr").mouseover(function(){
		$(this).addClass("ruled");
	});
	$("table tr").mouseout(function(){
		$(this).removeClass("ruled");
	});
	$("table tr:even").addClass("even");
}); 