(function($) {
 
   $.fn.foldList = function() {
     this.each(function() {
     
     	var thi = this;
     
     	$(this).children(".csc-header:first").click(function(){
     	
     		$(thi).children("div.folditem").each(function(){
     			$(this).children().show();
     		});
	});
    
	$(this).children("div.folditem").each(function(){
		$(this).children().hide();
	});
	
	
	
     });
 
     return this;
 
   };
 
 })(jQuery);






jQuery(function($){

$(".foldinglist").foldList();

});