Event.observe(window,'load', function(e) {
  $$('.aktt_tweets li').each(function(row, i){
  	if ( i % 2 != 1 ) {
   	$(row).addClassName('even');
		}
	});
});


