$(document).ready(function() {
					
	$('#content-container > h3 + div').hide();
	
	$('#content-container > h3 + div.active').show();
	
	$('#content-container > h3').click(function() {
		$(this).next('div').toggle();
	})
	
	
	
	
});


