document.write("<style type='text/css'>div.gallerynav{float: left;}div.gallerycontent{display:block;}</style>");

$(document).ready(function() {
	var gallery = $('#gallery').galleriffic('#gallerynav', {
		delay:                4000,
		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');
	};
});
