// JavaScript Document

	
$(document).ready(function() {
	var gallery = $('#gallery').galleriffic('#navigation', {
		delay:                2500,
		numThumbs:            27,
		preloadAhead:         -1, // Set to -1 to preload all images
		enableBottomPager:    false,
		imageContainerSel:    '#slideshow',
		controlsContainerSel: '#controls',
		titleContainerSel:    '#image-title',
		descContainerSel:     '#image-desc',
		downloadLinkSel:      '#download-link',	
		renderSSControls:     true,
		renderNavControls:    false,
		playLinkText: 		  'Diaporama',
		nextPageLinkText:     'Suivant',
		prevPageLinkText:     'Precedent'
	});
	
	gallery.onFadeOut = function() {
		$('#details').fadeOut('fast');
	};
	
	gallery.onFadeIn = function() {
		$('#details').fadeIn('fast');
	};
});