
/* - faqs.js - */
jq(document).ready(function(){

    //Hide (Collapse) the toggle containers on load
    jq("dd.answer").hide(); 

    //Switch the "Open" and "Close" state per click
    jq("dt.question").toggle(function(){
        jq("dt.question").removeClass("active");
        jq("dd.answer").hide(); 
        jq(this).addClass("active");
        jq(this).next("dd.answer").show();
        }, function () {
        jq(this).removeClass("active");
        jq(this).next("dd.answer").hide();
    });

});
