

<!-- Start: Prüfe ob Dokument geladen ist -->
$(document).ready(function() {	

	<!-- Formular Kontextformular beim Aufruf erstmals ausleben -->
	$('#kontextformular').hide();
	<!-- Formular Googlemaps beim Aufruf erstmals ausleben -->
	$('#googlemaps').hide();
	<!-- Formular Linksenden beim Aufruf auablenden -->
	$('#formular_linksenden').hide();

	
	<!-- Bei Klick auf Link erstmaliges öffnen Kontextformualr -->
	$('a#openKontextformular').click(function(event)
		{ 
		$("#kontextformular").show("slow");
		}
	);
	
	<!-- Schliessen Formular -->
	$('a#closeKontextformular').click(function(event)
		{ 
		$("#kontextformular").hide("slow");
		}
	);

	<!-- Wechselfunktion > Schließen Kontaktformular - öffnen Google Maps -->
	$('a#openGoogleMaps').click(function(event)
		{ 
			$("#googlemaps").show("slow");
 			$("#kontextformular").hide("slow");
		}
	);
	
	<!-- Schliessen Google Maps -->
	$('a#closeGoogleMaps').click(function(event)
		{ 
		$("#googlemaps").hide("slow");
		}
	);
	
	<!-- Steuerung für das Formular Link senden -->

	<!-- Bei Klick auf Link erstmaliges öffnen Link senden -->
	$('a#openLinksenden').click(function(event)
		{ 
		$("#formular_linksenden").show("slow");
		}
	);
	
	<!-- Schliessen Formular -->
	$('a#closeLinksenden').click(function(event)
		{ 
		$("#formular_linksenden").hide("slow");
		}
	);
	
	
	

<!-- Ende -->
});


