$(function()
{
   var ticker = function()
   {
      setTimeout(function(){
         $('#news_scorrevoli li:first').animate( {marginTop: '-62px'}, 1000, function()
         {
            $(this).detach().appendTo('#news_scorrevoli').removeAttr('style');
         });
         ticker();
      }, 4000);
   };
   ticker();
});
