jQuery(document).ready(function() {

// toggle the content sections

    jQuery('.section').hide();
    jQuery('.heading').click(function() {

        jQuery(this).next('.section').slideToggle();

    });

});


