//table linhas alternadas
Event.observe(window, 'load', function() {
    $$('div.bmw_pageContent2 table tbody > tr:nth-child(odd)').each(function(s) {
        s.addClassName('odd');
    });
    $$('div.bmw_pageContent2 table tbody > tr:nth-child(even)').each(function(s) {
        s.addClassName('even');
    });
    $$('div.bmw_pageContent2 table tbody > tr:nth-child(1)').each(function(s) {
        s.addClassName('tableh');
    });
});
//
