/**
*	Site-specific configuration settings for Highslide JS
*/
//f9404c3243d27c70fe96bd7aa234561d 
hs.graphicsDir = '/lib/duematernity/';
hs.showCredits = false;
hs.outlinesDir = '/';
hs.outlineType = 'custom';
hs.captionEval = 'this.a.title';
hs.captionOverlay.position = 'above';
hs.fadeInOut = true;
hs.align = 'center';

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
});

// Add the slideshow controller
hs.addSlideshow({
	slideshowGroup: 'group1',
	interval: 3000,
	repeat: true,
	useControls: false,
	thumbstrip: {
		mode: 'vertical',
		position: 'leftpanel',
		relativeTo: 'image'
	}

});

// gallery config object
var config1 = {
	slideshowGroup: 'group1',
	transitions: ['expand', 'crossfade']
};


hs.fullExpandPosition = 'bottom left';
var thumbImages = new Array();
hs.stripItemFormatter = function(a) {
  var myID = a.id;
  if (thumbImages[myID]) {
    return '<img src="' + thumbImages[myID] + '" alt="" />';
  }
}