$(function()
{
	var ticker = function()
	{
		setTimeout(function(){
			$('#ticker li:first').animate( {marginTop: '-20px'}, 800, function()
			{
				$(this).detach().appendTo('div#ticker').removeAttr('style');	
			});
			ticker();
		}, 5000);
	};
	ticker();
});
