$(document).ready(function() {

	if ($('#gallery').length > 0) {
		var gallery = $('#gallery').galleriffic('#navigation', {
			delay:                1000,
			numThumbs:            5,
			imageContainerSel:    '#slideshow',
			titleContainerSel:    '#image-title',
	    descContainerSel:  '#image-desc',
			downloadLinkSel:      '#download-link'
		});
	
		gallery.onFadeOut = function() {
			$('#details').fadeOut('fast');
		};
	
		gallery.onFadeIn = function() {
			$('#details').fadeIn('fast');
		};
	}
	
	$("a.inline-content").fancybox({
		'autoDimensions': false,
		'hideOnContentClick': true,
		'height': 500,
		'width': 500
	});

});

