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