/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = 'highslide/graphics/';
hs.showCredits = false;
hs.outlineType = 'custom';
hs.dimmingOpacity = 0.85;
hs.transitionDuration = 750;
hs.align = 'center';
hs.allowSizeReduction = false;
hs.padToMinWidth = true;
hs.maxWidth = 700;
hs.maxHeight = 500;
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
});

hs.expandCursor = null;
hs.restoreCursor = null;

// Add the slideshow controller
hs.addSlideshow({
//	slideshowGroup: 1,
	interval: 6000,
	repeat: false,
	useControls: true,
	fixedControls: 'fit',
	overlayOptions: {
		className: 'controls-in-heading',
		opacity: '0.75',
		position: 'bottom right',
		offsetX: '10',
		offsetY: '-10',
		hideOnMouseOut: true
	},
// 	thumbstrip: {
// 		mode: 'horizontal',
// 		position: 'bottom center',
// 		relativeTo: 'viewport'
// 	},

});

hs.transitions = ['expand', 'crossfade'];


