function initAcc() {
    $('div.csc-header h3').wrapInner('<a href="#"></a>');
    $('div.csc-header h3').parent().nextUntil('div.csc-header').hide();
    $('div.csc-header h3').click(
        function() {
            if( $(this).parent().next().is(':visible')) {
                $(this).parent().nextUntil('div.csc-header').slideUp('normal');
                return false;
            }
            $('div.csc-header h3').parent().nextUntil('div.csc-header').slideUp('normal');
            $(this).parent().nextUntil('div.csc-header').slideDown('normal');
            return false;
        }
    );
}

$(document).ready(function() {
    initAcc();
});

