/*função para mostrar e esconder respostas*/
function Habilita(){
$('.escondendo').click(function(evento){
evento.preventDefault();
if($(this).hasClass("mostrando")) {
        $(this).removeClass("mostrando");
        $(this).addClass("escondendo");
    } else {
        $(this).removeClass("escondendo");
        $(this).addClass("mostrando");
    }
});
}


