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