$(document).ready(function(){
	$("div.linha-ajuda h3").each(function(){
		$(this).css("cursor", "pointer");
		$(this).click(function(){
			$(this).nextAll("p").slideToggle("fast");
		});
	});
	
	$(".abrir").click(function(){
		if($(this).text() == "Abrir tópicos"){
			$("div.linha-ajuda p").slideDown("slow");
			$(this).text("Fechar tópicos");
		} else {
			$("div.linha-ajuda p").slideUp("slow");
			$(this).text("Abrir tópicos");
		}
	});
});
