// Toggle Funktion Frage / Antwort

$(document).ready(function() {
		$('.antwort').hide();	
		$('#inhalte h2.frage').toggle(
									  function() {
										  $(this).next('.antwort').slideDown();
										  $(this).addClass('close');
									  },
									  function() {
										  $(this).next('.antwort').slideUp();
										  $(this).removeClass('close');
									  }
									  ); // Ende Toggle
}); // ende ready
