$(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			//impostarlo come altezza di ul#ticker
			$('#ticker li:first').animate( {marginTop: '400px'}, 800, function()
			{
				$(this).detach().appendTo('ul#ticker').removeAttr('style');	
			});
			ticker();
		}, 5000);
	};
	ticker();
});
