$(document).ready(function() {
	$(".stripeMe tr").mouseover(function() { $(this).addClass("over"); }).mouseout(function() {	$(this).removeClass("over");});
	$(".stripeMe tr:nth-child(odd)").addClass("odd");
 });