$(document).ready(function()
{
     $(".main-content p.resposta").hide();
     $("h4.pergunta").click(function(){
         $(this).next("p.resposta").slideToggle("slow")
         .siblings("p.resposta:visible").slideUp("slow");
         $(this).toggleClass("corrente");
         $(this).siblings("h4.pergunta").removeClass("corrente");
         return false;
    }); 
}); 