jQuery(document).ready(function(){
	$('.section .csc-header').click(function() {
		$(this).next().slideToggle('slow');
                $(this).parent().toggleClass('act');
		return false;
	}).next().hide();
});
