$(document).ready(function() {
	// Struktur geladen

	// Layer mit Kontaktoptionen anzeigen
	if ($('div#navigationContactWrapper').length) $('div#navigationContactWrapper').toggle();

	// Rollover Icons Subbereich
	$("div#navigationContactLayer img").hover(function(){  
		tempText = $(this).attr("alt");
		$("div#navigationContactInfoLayer").text(tempText);
	},function(){
		$("div#navigationContactInfoLayer").text("");
	});

});

function triggerGalleryLink(id) {
	$('a#gallery' + id + 'Link').trigger('click');
}
