Event.observe(window, 'load', function() {
    $$('table.row tbody > tr:nth-child(odd)').each(function(s) {
        s.addClassName('odd-row');
    });
    $$('table.row tbody > tr:nth-child(even)').each(function(s) {
        s.addClassName('even-row');
    });
});
