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