	var delayNoticias = 5000; // Tempo que uma notícia ficará aparecendo
	var tempoAnimacaoNoticias = 500; // Tempo da animação de mudana de notícia

	var noticias = new Array();
	var noticia = 0;
	
	function mudaNoticia(){
		auxMudaNoticia();
		//$("#conteudonoticia").animate({opacity : 0}, tempoAnimacaoNoticias, tempoAnimacaoNoticias, auxMudaNoticia);
		if (noticia >= noticias.length) noticia = 0;
			setTimeout(mudaNoticia,delayNoticias);
	}
	
	function auxMudaNoticia(){
		$("#conteudonoticia").html(noticias[noticia]);
		//$("#conteudonoticia").DropInRight(tempoAnimacaoNoticias);
		noticia++;
	}

	$("#noticias > .noticia").each(function(){
		noticias.push($(this).html());
	});
	
	if (noticias.length == 1)
		$("#conteudonoticia").html(noticias[0]);
	else if (noticias.length > 1)
		mudaNoticia();
