$(function(){
    var cName = 'cw-toggle-view';
    $("."+cName).each(function(n){
        $(n).find(".csc-header :header").click(function(e){
            $(e.target).parents("."+cName).find(".csc-content").toggle("fast");
			
			if($(this).hasClass('open')) $(this).removeClass('open'); 
				else $(this).addClass('open');
        });
    }).find(".csc-content").hide();
});
