function animationTop()
{
	$('#globo-t').animate({'top': '115px'}, 1000, function(){
		$(this).animate({'top':'120px'}, 1000, function(){
			animationTop();
		});
	});
}
animationTop();


function animationLeft()
{
	$('#globo-l').animate({'top': '210px'}, 3000, function(){
		$(this).animate({'top':'230px'}, 3000, function(){
			animationLeft();
		});
	});
}
animationLeft();


function animationLeftBottom()
{
	$('#globo-l-b').animate({'top': '320px'}, 3600, function(){
		$(this).animate({'top':'310px'}, 3600, function(){
			animationLeftBottom();
		});
	});
}
animationLeftBottom();


function animationRight(item)
{
	$('#globo-r').animate({'top' : '170px'}, 4000, function(){
		$(this).animate({'top' : '150px'}, 4000, function(){
			animationRight();
		});
	});
}
animationRight();


function animationRightBottom(item)
{
	$('#globo-r-b').animate({'top' : '335px'}, 3000, function(){
		$(this).animate({'top' : '355px'}, 3000, function(){
			animationRightBottom();
		});
	});
}
animationRightBottom();


