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