

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

