$(function(){

	// Add striping to all tables
	var arr = $(".stripeMe")
	jQuery.each(arr, function() {
	  $(this).find('tr:even').addClass("alt");
	})

});

