$(function()
{
	var ticker2 = function()
	{
		setTimeout(function(){
			$('#ticker2 li:first').animate( {marginTop: '-90px'}, 1900,  function()
			{
				$(this).detach().appendTo('ul#ticker2').removeAttr('style');	
			});
			ticker2();
		}, 16000);
	};
	ticker2();
});

