
$(document).ready(function(){
						   
	$("#toggleAll").toggle(function () {
		$(".info, .web, .kontakt").fadeOut("slow")
		$("#toggleAll").html("Alle Inhalte zeigen")
									},
		function () {
		$(".info, .web, .kontakt").fadeIn("slow")
		$("#toggleAll").html("Hintergrundbild zeigen")
									});
	
});
	
