// JavaScript Document
$(document).ready(function(){
		/* PEGA O PRIMEIRO E COLOCA A CLASSE ACTIVE */
	var valor = $("#noticiasGuiaDosContadoresTopo li:first-child").attr('class');
	$("#noticiasGuiaDosContadoresTopo li:first-child").addClass("active");
	$("#noticiasGuiaDosContadoresConteudo #"+valor).show();
		/* ADICIONA E REMOVE CLASSES DO MENU, E FAZ SUMIR UMA NOTÍCIA E APARECER OUTRA */
	$("#noticiasGuiaDosContadoresTopo li").click(function(){
		$("#noticiasGuiaDosContadoresConteudo div").fadeOut("fast");
		$("#noticiasGuiaDosContadoresTopo li").removeClass("active")
		var noticias = $(this).attr("class");
		$("#noticiasGuiaDosContadoresConteudo #"+noticias).fadeIn("slow");
		$(this).addClass("active");
	})
	$("#linksuteis ul").cycle({
		fx:"fade",
		/*next:'#next', 
		prev:'#prev'*/
	});
});
