document.observe('dom:loaded', function() {
     var interval = setInterval(function(){
          var news = $('news');
          (news.down('.current').hide().removeClassName('current').next() || news.down('.article')).show().addClassName('current');
     }, 5000);
});