$('document').ready(function() {
	
	$('div.csPanel').each(function() {
		
		$(this).find('h2').click(function() {
			$(this).parent('div.csPanel:first').find('div.csPanelContent:first').slideToggle('slow', function() {
				if ($(this).is(':hidden')) {
					$(this).parent('div.csPanel:first').find('h2').removeClass('active');
				} else {
					$(this).parent('div.csPanel:first').find('h2').addClass('active');
				}
			});
		});
		
		
		if ($(this).find('div.csPanelContent').is(':hidden')) {
			$(this).find('h2').removeClass('active');
		} else {
			$(this).find('h2').addClass('active');
		}
		
	});
	
	
	
});

