// JavaScript Document

$(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			// il valore numerico è la velocità di transizione
			$('#ticker li:first').animate( {marginTop: '-20px'}, 600, function()
			{
				$(this).detach().appendTo('ul#ticker').removeAttr('style');
			});
			ticker();
			// tempo di permamenza scritta
		}, 5000);
	};
	ticker();
});

