$(function()
{

	$.ajax({
	url: "/gestione/getnews.php",
	//context: $("#ticker"),
	success: function(data){
		$('#ticker').html(data);
		InitTicker();
	}
	});
});

function InitTicker()
{	
	var ticker = function()
	{
		setTimeout(function(){
			if($('#ticker li').length > 1)			
			{
				$('#ticker li:first').animate( {marginTop: '-120px'}, 800, function()
				{
					$(this).detach().appendTo('ul#ticker').removeAttr('style');	
				});
			
				ticker();
			}
		}, 6000);
	};
	ticker();

}
