Base.modules.Faq = {
    init: function() {
        this.togglableFAQ();
    },

    togglableFAQ: function() {
        $('.faq h5').each(function() {
            var question = $(this);

            question.nextAll('p').eq(0).slideUp(0);

            question.wrapInner('<a href="#">* ' + question.context.innerHTML + '</a>').find('a').click(function() {
                question.nextAll('p').eq(0).slideToggle(100);

                return false;
            });
        });
    }
};

