	hs.graphicsDir = 'highslide/graphics/';	hs.align = 'center';	hs.transitions = ['expand', 'crossfade'];	hs.outlineType = null;	hs.fadeInOut = true;	hs.dragHandler = null;		hs.allowSizeReduction = true;	hs.expandCursor = null;	hs.restoreCursor = null;	hs.showCredits = false;	hs.useBox = true;	hs.width = 750;	hs.height = 500;		hs.targetX = 'align: center'; // the target  	hs.targetY = 'diaporama 20px'; // follow the scrolling	hs.wrapperClassName = 'no-move no-expand';			// Add the controlbar	if (hs.addSlideshow) hs.addSlideshow({		slideshowGroup: 'groupIntro',		interval: 3000,		repeat: true,		useControls: false,		fixedControls: false,		overlayOptions: {			opacity: .75,			outlineType: 'wide-border',			position: 'middle center',			hideOnMouseOut: true					}	});		// Prevent closing when click on image	hs.Expander.prototype.onBeforeClose = function (sender) {	return false;	}	// Start the gallery on page load	hs.addEventListener(window, "load", function() {   // click the element virtually:   document.getElementById("thumbIndex").onclick();});	// Repositioning the popup after resizing browser window	hs.addEventListener(window, 'resize', function() {	var i, exp;	hs.page = hs.getPageSize();	for (i = 0; i < hs.expanders.length; i++) {		exp = hs.expanders[i];		if (exp) {			var x = exp.x,				y = exp.y;			// get new thumb positions			exp.tpos = hs.getPosition(exp.el);			x.calcThumb();			y.calcThumb();			// calculate new popup position		 	x.pos = x.tpos - x.cb + x.tb;			x.scroll = hs.page.scrollLeft;			x.clientSize = hs.page.width;			y.pos = y.tpos - y.cb + y.tb;			y.scroll = hs.page.scrollTop;			y.clientSize = hs.page.height;			exp.justify(x, true);			exp.justify(y, true);			// set new left and top to wrapper and outline			exp.moveTo(x.pos, y.pos);		}		}	});