$(document).ready(function(){
	$(".box tr").mouseover(function(){
		$(this).addClass("over");
	 });
	$(".box tr").mouseout(function(){
		$(this).removeClass("over");
	 });
	$(".box tr:odd").addClass("alt");
 });