$(function(){
		    $('.animacao img:gt(0)').hide();
		    setInterval(function(){
				$('.animacao :first-child').fadeOut(800)
				.next('img').fadeIn(800).end().appendTo('.animacao');}, 
			7000);
});
