﻿$(document).ready(function() {
    $("#faq .faqAnswer").hide();

    // Add the click behavior
    $("#faq h3").click(function() {

        $(this).parent().children(".foldoutIcon").toggleClass("open");
        $(this).next(".faqAnswer").slideToggle();
        $(this).toggleClass("selected");
    });
});
