// Nur wenn JavaScript aktiviert, dann Funktion
			$('div.inhalt').css('display', 'block');
			$('div.navigation').css({'width' : '153px', 'height':'350px','float' : 'left'});
			$(document).ready(function() {				
				// Galerie-Einstellungen
				$('#thumbs').galleriffic({
					imageContainerSel: '#bilder',					// div container in dem grosse Bilder angezeigt werden
					controlsContainerSel: '#controls',				// div container in dem "vor", "zurück" angezeigt werden
					captionContainerSel: '#caption', 						// The CSS selector for the element within which the captions should be rendered
        			loadingContainerSel: '#loading', 						// The CSS selector for the element within which should be shown when an image is loading
        
					preloadAhead: 21, 								// Set to -1 to preload all images
					delay: 2000, 									// in milliseconds
					numThumbs: 21,									// Anzahl der Thumbs auf EINER Seite
					maxPagesToShow: 3,  							// The maximum number of pages to display in either the top or bottom pager
					enableBottomPager: true,						// Seitenanzahl für Thumbs anzeigen
					enableTopPager: false,							// Seitenanzahl für Thumbs anzeigen
					renderSSControls: false,						// Slideshowknöpfe anzeigen
					renderNavControls: true,						// "vor", "zurück" anzeigen
					prevLinkText: 'zur&uuml;ck &nbsp; &nbsp;',		// Text für "zurück"
                    nextLinkText: 'vor',							// Text für "vor"
					nextPageLinkText: '&nbsp;&rsaquo;&rsaquo;',				// Text Seitenzahl
       				prevPageLinkText: '&lsaquo;&lsaquo;&nbsp;',				// Text Seitenzahl
				});
			});
