//stripes all tables with the attribute --> stripe="true"
if (typeof(jQuery)!='undefined') { //check if jquery is loaded on this page
	$(document).ready(function() {
		$("table[stripe='true']").find("tbody > tr:odd").addClass("table_odd");
		$("table[stripe='true']").find("tbody > tr:even").addClass("table_even");
	});
}

