/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = '/highslide/graphics/';
hs.showCredits = false;
hs.creditsPosition = 'bottom right';
hs.outlineType = 'custom';
hs.dimmingOpacity = 0.5;
hs.fadeInOut = true;
hs.align = 'center';
hs.allowMultipleInstances = false;
hs.blockRightClick = true;
hs.headingOverlay.position = 'below';
hs.headingEval = 'this.a.title';
hs.dragByHeading = false;
hs.numberOfImagesToPreload = 0;

// Define the restraining box
hs.useBox = true;
hs.width = 720;
hs.height = 400;


// Home slideshow controller
hs.addSlideshow({
	slideshowGroup: 'homeGroup',
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: false,
	overlayOptions: {
	    className: 'controls-in-heading',
	    opacity: '0.75',
	    position: 'bottom right',
	    offsetX: '2',
	    offsetY: '22',
	    hideOnMouseOut: false
	}
});

// Home config object
var homeConfig = {
	slideshowGroup: 'homeGroup',
	thumbnailId: 'homeThumb',
	numberPosition: 'heading',
	transitions: ['expand', 'crossfade']
};

// Home 1 slideshow controller
hs.addSlideshow({
	slideshowGroup: 'home1Group',
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: false,
	overlayOptions: {
	    className: 'controls-in-heading',
	    opacity: '0.75',
	    position: 'bottom right',
	    offsetX: '2',
	    offsetY: '22',
	    hideOnMouseOut: false
	}
});

// Home 1 config object
var home1Config = {
	slideshowGroup: 'home1Group',
	thumbnailId: 'home1Thumb',
	numberPosition: 'heading',
	transitions: ['expand', 'crossfade']
};

