﻿$(document).ready(function() {
    var bFaqAnswersShown = false;
    /*
    *   search for all faqQuestion
    */
    $(".faqQuestion").each(function(index, element) {
        /*
        * add onclick event
        */
        $(this).click(function() {
            $(this).children("div").toggle();
        });
    });
    $(".faqToggleAll").click(function() {
        bFaqAnswersShown = !bFaqAnswersShown;
        if (bFaqAnswersShown) {
            $(this).html("Verberg alle antwoorden");
            $(".faqQuestion").each(function(index, element) {
                $(this).children("div").show();
            });
        } else {
            $(this).html("Toon alle antwoorden");
            $(".faqQuestion").each(function(index, element) {
                $(this).children("div").hide();
            });
        }
    });
});

