/*
 * Zebra Striping Made Easy
 * http://docs.jquery.com/Tutorials:Zebra_Striping_Made_Easy
 */

 $(document).ready(function(){
   $(".stripes tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
   $(".stripes tr:nth-child(even)").addClass("alt"); // Find every even table row relative to the table itself
 });