$(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			$('#tickerNews li:first').animate( {marginTop: '-150px'}, 1000, function() // Durata animazione
			{
				$(this).detach().appendTo('ul#tickerNews').removeAttr('style');	
			});
			ticker();
		}, 6000); // Durata della notizia
	};
	ticker();
});
