﻿function scroll_news(){
$(function(){
      $('#infozone li').eq(0).fadeOut('slow',function(){  
            $(this).clone().appendTo($(this).parent()).fadeIn('slow');
            $(this).remove();
        });
     });
}
setInterval('scroll_news()',2000);
