function initAccordion(){
	$.each($('.csc-frame-frame1'), function(){
		$('.csc-frame-frame1 > *').not('h2').hide();
		$('.csc-frame-frame1 > h2').css({'cursor':'pointer'});
	})
	
	$('.csc-frame-frame1 h2').click(function(e){
		if($(e.target).parent().hasClass('active')){
			$(e.target).parent().removeClass('active').children().not('h2').fadeOut();
		} else {		
			$(e.target).parent().addClass('active').children().not('h2').fadeIn();
		}
		e.preventDefault();
	});
}

$(document).ready(function(){
	initAccordion();
	
});
