$(document).ready(function() {
    $("div.expandable").wrap('<div class="expandableWrap" />').children("div.csc-header").each(function() {
        $(this).insertBefore($(this).parent("div.expandable"))
    }).click(function() {
        $(this).siblings("div.expandable").slideToggle("slow");
        $(this).parent("div.expandableWrap").toggleClass("expanded");
    });
});
