document.observe('dom:loaded', function() { 
  $$('.zebra-list li:nth-child(odd)').invoke('addClassName', 'odd'); 
  $$('.zebra-list p:nth-child(even)').invoke('addClassName', 'alt'); 
});