//<![CDATA[
	hs.graphicsDir = '/_js/highslide/graphics/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = '';
	hs.fadeInOut = true;
	hs.captionEval = 'this.thumb.alt';
	//hs.dimmingOpacity = 0.75;
	
	// Add the controlbar
	if (hs.addSlideshow) hs.addSlideshow({
		//slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: true,
		overlayOptions: {
			opacity: .75,
			position: 'top center',
			hideOnMouseOut: true
		}
	});
	
	$(document).ready(function() {
 		$("a.highslide img").each(function() {
				var capt = $(this).attr("alt");
				$(this).after("<span>" + capt + "<\/span>");
		});
		//end document ready
	});
//]]>