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