function stripeTables() {
	$$("table.stripe").each(function(table){
		table.getElements("tr").each(function(row,i){
			if ( i % 2 == 1 ) row.addClass( "odd" );
		});
	});
};

window.addEvent('domready', function() {
    stripeTables();
});
