$(document).ready(function() {
	 
	/* Variante A: Text klappt direkt unterhalb des Titels aus */

	
	$("#h4.abstract").click(function(){

		var currentlyShown = $(this).next().hasClass("show");

		$("div.abstract").removeClass("show");

		if(!currentlyShown) $(this).next().addClass("show");
	});
	

	/* Variante B: Text klappt unterhalb der gesamten Titelsektion aus 

	$("#einblendtexte h3").click(function(){

		$("#einblendtexte h3").removeClass("active");
		$(this).addClass("active");

		$("#aktueller_text").html($(this).siblings().clone());
*/
	});
