document.observe("dom:loaded", function() {
    $$('.box').each(function(el, i){
        if (i % 2 != 0) {
            el.addClassName('odd')
        }
    });
});
