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