/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = 'highslide/graphics/';
hs.showCredits = false;
hs.outlineType = 'custom1';
hs.dimmingOpacity = 0.75;
hs.align = 'center';
hs.easing = 'easeInOutCubic';
hs.outlineWhileAnimating = '2';
hs.transitions = ['expand', 'crossfade'];
hs.fadeInOut = 'true'
hs.captionOverlay.position = 'below';
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.registerOverlay({
    html: '<div class="highslide-move move-layer" title="Move"></div>',
    position: 'top right', // Change this to fit your need
    useOnHtml: true
});
hs.lang = {
      loadingText : null,
   };
hs.LoadingOpacity = '0.60'

// Add the slideshow controller
hs.addSlideshow({
	slideshowGroup: 'group1',
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: false,
	overlayOptions: {
		className: 'large-dark',
		opacity: '0.8',
		position: 'top center',
		offsetX: '0',
		offsetY: '0',
		hideOnMouseOut: true
	}
});

// gallery config object
var config1 = {
	slideshowGroup: 'group1',
	transitions: ['expand', 'crossfade']
};

