/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = 'highslide/graphics/';
hs.showCredits = false;
hs.creditsPosition = 'bottom left';
hs.outlineType = 'custom';
hs.align = 'center';
hs.padToMinWidth = true;
hs.marginTop = 55;
hs.useBox = true;
hs.width = 500;
hs.height = 500;
hs.allowMultipleInstances = false;
hs.blockRightClick = true;
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
});
// popup object
var htmlPopup = {
	objectType: 'ajax',
	width: 300,
	height:300,
	wrapperClassName: 'no-header'
	};


// Add the slideshow controller
hs.addSlideshow({
	slideshowGroup: 'group1',
	interval: 4500,
	repeat: false,
	useControls: true,
	fixedControls: 'fit',
	overlayOptions: {
		className: 'controls-in-heading',
		opacity: '0.75',
		position: 'bottom center',
		offsetX: '0',
		offsetY: '40',
		hideOnMouseOut: false
	},
	thumbstrip: {
		mode: 'horizontal',
		position: 'bottom center',
		relativeTo: 'image'
	}

});

// gallery config object
var config1 = {
	slideshowGroup: 'group1',
	thumbnailId: 'gallery-opener',
	autoplay: true,
	transitions: ['expand', 'crossfade']
};

