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