function Launch(page) { 
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=425,height=660"); 
} 
function LaunchMovie(page) { 
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=375,height=375"); 
} 

// when the DOM is ready...
$(document).ready(function () {

	// intercept the click for all highslide images
	$('a.highslide').each(function() { 
		this.onclick = function() { 
			return hs.expand(this,{ slideshowGroup: 1 }); 
		}; 
	});

});

/* Highslide settings
-----------------------------------*/

	hs.graphicsDir = '/_inc/highslide/graphics/';
	hs.showCredits = false;
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.fadeInOut = true;
	hs.numberPosition = 'caption';
	hs.dimmingOpacity = 0.75;
	hs.captionId = 'the-caption';

	// Add the controlbar
	if (hs.addSlideshow) hs.addSlideshow({
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: 'fit',
		overlayOptions: {
			opacity: .75,
			position: 'bottom center',
			hideOnMouseOut: true
		}
	});
