			jQuery(document).ready(function() {
				var gallery = jQuery('#gallery').galleriffic('#navigation', {
					delay:                2000,
					numThumbs:            8,
					imageContainerSel:    '#slideshow',
					controlsContainerSel: '#controls',
					titleContainerSel:    '#image-title',
					descContainerSel:     '#image-desc',
					downloadLinkSel:      '#download-link',
					enableBottomPager: 	  false,
					renderSSControls:     false,
					playLinkText:         'Uruchom pokaz slajdów',
					pauseLinkText:        'Zatrzymaj pokaz slajdów',
					prevLinkText:         '&laquo; Poprzednie',
					nextLinkText:         'Następne &raquo;',
					nextPageLinkText:     'Następna &rsaquo;',
					prevPageLinkText:     '&lsaquo; Poprzednia'
				});
				
				gallery.onFadeOut = function() {
					jQuery('#details').fadeOut('fast');
				};
				
				gallery.onFadeIn = function() {
					jQuery('#details').fadeIn('fast');
				};
			});


