window.addEvent('domready', function(){
	$$('table.rowColor').each(function(table){
		table.getElements('tr').each(function(row, i){
			i++;
			if(i % 2){
				row.setStyle('backgroundColor', '#f7f7f7');
			}
		});
	});
});