Alternative Rows Colors With CSS and Mootools
/* load alternate row colors in a table */
function loadAltRowColors() {
if($$('table.myStyle')) {
var count = 0;
$$('tr.dynRow').each(function(elm) {
(elm.hasClass('odd') ? elm.removeClass('odd') : elm.removeClass('even'));
});
$$('tr.dynRow').each(function(elm) {
elm.addClass(count++ % 2 == 0 ? 'odd' : 'even');
});
};
};