try {
$('.slideshow .defaultimg').hide();
$("a.thumb").removeAttr("title");
$("a.thumb img").removeAttr("alt");
	
	$('div#thumbs').galleriffic({
		delay:                     2500,
			preloadAhead:              -1,
		imageContainerSel:         '#slideshow',
		loadingContainerSel:       '#loading',
		defaultTransitionDuration: 400,
			onPageTransitionOut:       function(callback) {
			this.fadeTo('fast', 0.0, callback);
		},
		onPageTransitionIn:        function() {
			this.fadeTo('fast', 1.0);
		}
	});
}
catch(err){}