$(document).ready(function(){	//jQuery ready is quicker than onload
  $(".stripeMe tr").mouseover(function(){$(this).addClass("tover");}).mouseout(function(){$(this).removeClass("tover");}); //sets class for hover over a row
  $(".stripeMe tr:even").addClass("alt");	//sets class for every other row, for striping
});
$(document).ready(function(){	//jQuery ready is quicker than onload
  $(".stripeOnly tr:even").addClass("alt");	//sets class for every other row, for striping
});
$(document).ready(function(){	//jQuery ready is quicker than onload
  $(".hoverMe tr").mouseover(function(){$(this).addClass("tover");}).mouseout(function(){$(this).removeClass("tover");}); //sets class for hover over a row
});
