/**
*	Site-specific configuration settings for Highslide JS
*/
hs.numberOfImagesToPreload = 0;
hs.graphicsDir = '../../js/highslide/graphics/';
	hs.align = 'center';
	hs.showCredits = false;
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = 'custom';
	hs.fadeInOut = true;
	hs.dimmingOpacity = 0.95;
	hs.wrapperClassName = 'borderless floating-caption';
	hs.captionEval = 'this.a.title';
	hs.marginLeft = 100; // make room for the thumbstrip
	hs.marginBottom = 80 // make room for the controls and the floating caption
	hs.captionOverlay.position = 'below';
	hs.preserveContent = false;


	// Add the slideshow providing the controlbar and the thumbstrip
	hs.addSlideshow({
		//slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: false,
		overlayOptions: {
			className: 'text-controls',
			opacity: 1,
			position: 'bottom center',
			relativeTo: 'viewport',
			offsetX: 50,
			offsetY: -5,
			hideOnMouseOut: false

		},
		thumbstrip: {
			position: 'middle left',
			mode: 'vertical',
			relativeTo: 'viewport'
		}
	});

	// Add the simple close button
	hs.registerOverlay({
		html: '<div class="closebutton" onclick="return hs.close(this)" title="Close"></div>',
		position: 'top right',
		useOnHtml: true,
		fade: 2 // fading the semi-transparent overlay looks bad in IE
	});

