/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = 'highslide/graphics/';
hs.showCredits = false;
hs.outlineType = 'custom';
hs.dimmingOpacity = 0.5;
hs.align = 'top';
hs.marginTop = 20;
hs.marginRight = 20;
hs.marginBottom = 40;
hs.marginLeft = 10;
hs.useBox = true;
hs.width = 700;
hs.height = 470;

hs.allowMultipleInstances = false;
hs.blockRightClick = true;
hs.enableKeyListener = false;
hs.captionOverlay.position = 'rightpanel';
hs.captionOverlay.width = '340px';

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



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

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

