// JavaScript Document
//öffnet die Antwort bei Klick auf die Frage
$(document).ready(function() {
	$('.faq_punkt').hide();

		$('.frage-box').click( function() { 
			var aktuell = $(this).children("div").attr("id");
			$('.faq_punkt').each(function(){ 
				if ($(this).attr("id") != aktuell && $(this).css("display") == "block"){
					$(this).slideUp("fast");
				}				 
			});
			
			$(this).children("div").slideToggle("fast"); // Select all links in object with gallery ID
				return false;
			; });
	});
	
	