$(document).ready(function(){

   $('#content-text .csc-header h2').css({cursor: "pointer"});
   
   $('#content-text .csc-header').not('.csc-header-n1').next('div').hide();
   
   $('#content-text .csc-header').not('.csc-header-n1').click(
      function(){
         if ($(this).next().css("display")=="none" ) {
            $(this).next('div').slideDown("fast");
         } else {
            $(this).next('div').slideUp("fast");
         }
      }
   );

}); 