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