$(function() {
	$(".tits-faq").toggle(function() {
		$(this).parent().find("dd").toggle();
		$(this).attr("title","Esconder");
		$(this).css("display", "block");
},
	function() {
		$(this).parent().find("dd").toggle();
		$(this).attr("title","Mostrar");
		$(this).removeClass("display","none");
	});
});


$(function() {
	$(".nav-faq").toggle(function() {
		$(".tits-faq").parent().find("dd").css("display", "block");
		$(this).html("Fechar Todas as Perguntas");
},
	function() {
		$(".tits-faq").parent().find("dd").css("display", "none");
		$(this).html("Expandir Todas as Perguntas");
	});
});
