$(document).ready(function() {
    $("div.expandable").wrap('<div class="expandableWrap" />').children("div.csc-header").each(function() {
        $(this).insertAfter($(this).parent("div.expandable"))
    }).click(function() {
        $(this).siblings("div.expandable").slideToggle("slow");
        $(this).parent("div.expandableWrap").toggleClass("expanded");
        if ($(this).parent("div.expandableWrap").hasClass("expanded")) {
        	$(this).text('< weniger');
        	return;
        }
       	$(this).text('mehr >');        
    });
    
    $("div.indent").parent("div.expandableWrap").addClass("indentWrap");    
});
