var gallery;

jQuery.noConflict()(function () {
jQuery(document).ready(function() {
	// Initialize Minimal Galleriffic Gallery
	gallery = jQuery('#thumbs').galleriffic({
		imageContainerSel:      '#slideshow',
		controlsContainerSel:   '#controls',
		delay:                     5000,
		preloadAhead:              10,
		autoStart:                 true,
		syncTransitions:           true,
		defaultTransitionDuration: 900
	});
});

});


