$(document).ready(function() {

	$("table.data tbody, table.join tbody, table.report_data tbody").each(function() {
		$(this).children("tr:even").addClass("even").end()
		.children("tr:odd").addClass("odd");
	});

});