﻿$(document).ready(function() {

    $('.htmlContentContainer h3.expandable').each(function() {

        $(this).next('span.expandableSection').css('display', 'none');

    });

    $('.htmlContentContainer h3.expandable').click(function() {

        if ($(this).hasClass('selected')) {

            $('.htmlContentContainer h3').removeClass('selected');
            $(this).next('span.expandableSection').css('display', 'none');

        } else {

            $('.htmlContentContainer h3').removeClass('selected');
            $(this).addClass('selected');
            $('.htmlContentContainer span.expandableSection').css('display', 'none');
            $(this).next('span.expandableSection').css('display', 'block');

        }

    });  

});
