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