//ABRE TOPICOS AJUDA
$(document).ready(function() {
	$('.ajuda .conteudo').hide();
	$('.ajuda .titulo').click(function() {
	  $(this).next('.ajuda .conteudo').toggle(300);
	  return false;
	});
});
//ABRE TOPICOS AJUDA


//gerencia tamanho da div de conteudo
function dimensionaDivConteudo() {
    document.getElementById("conteudo").style.height = document.body.scrollHeight - 160;   
}
