    function faq(){
        $('#main a.ask').each(function(){
            $(this).click(function(e){
                e.preventDefault();e.stopPropagation();
            $(this).parents('li').toggleClass('open');
        })
})
        $('.fechar a').click(function(e){
            e.preventDefault();e.stopPropagation();
        $(this).parents('li').toggleClass('open');
        })
}

    function openAllAnswers(){
        $('#main a.openAll').each(function(){
            $(this).click(function(e){
            e.preventDefault();e.stopPropagation();
            htm = $(this).html();
                if (htm.match("Abrir")) {
                    $(this).html(htm.replace("Abrir","Fechar"))
                    $('#main a.ask').parents('li').addClass('open');
                 } else {
                    $(this).html(htm.replace("Fechar","Abrir"))
                    $('#main a.ask').parents('li').removeClass('open');
                        }
                })
         })
}

    $(function(e){
        $("#main ol li>div").append('<p class="fechar"><a href="#">Fechar</a></p>');
            faq();
             openAllAnswers();
                if(location.hash) {$(location.hash+" a.ask").click(); };
});