$(document).ready(function(){

	$(".jquery-toggle .toggle-content").hide(); // hide alle toggle-content-container on dom-ready
	
	$(".jquery-toggle").addClass("jquery-toggle-active"); // add a css class to style the clickable headlines, but only do so if javascript is active
							
    $(".jquery-toggle .toggle-head").click(function() { // when the header is clicked ...
		  $(this).next(".jquery-toggle .toggle-content").toggle(); // ... show or hide the content
	});

});