$(document).ready(function(){
	$(".toggle").next().css("display", "none").css("clear", "both");
	$(".toggle").toggle(function(){
		$(this).next().slideDown();
		$(this).html("Ausblenden");
	}, function() {
		$(this).next().slideUp();
		$(this).html("Mehr lesen...");
	});
});

