$(document).ready(function(){

	//onload tinhalt container verstecken
	$(".tinhalt").hide(); 
	$(".tless").hide(); 

	//Togglen
	$("div.tmore").click(function(){
		$(this).toggleClass("active").next("").slideToggle("slow");
		$(this).toggleClass("active").next("").next("").slideToggle("slow");
		$(this).hide(); 
		//$(".tinhalt").slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
	
	//Togglen
	$("div.tless").click(function(){
		$(this).toggleClass("active").prev("").slideToggle("slow", function() {
				$(this).toggleClass("active").prev("").slideToggle("slow");
		  });
		$(this).hide(); 
		//$(".tinhalt").slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});

});
