$(document).ready(function() {
				var gallery1 = $('#gallery').galleriffic('#navigation', {
					delay:                3000,
					numThumbs:            6,
					imageContainerSel:    '#slideshow',
					controlsContainerSel: '#controls',
					titleContainerSel:    '#image-title',
					descContainerSel:     '',
					downloadLinkSel:      '#download-link'
				});
				
				gallery1.onFadeOut = function() {
					$('#details').fadeOut('fast');
				};
				
				gallery1.onFadeIn = function() {
					$('#details').fadeIn('fast');
				};

			});
