hs.graphicsDir = '/js/highslide/graphics/';
hs.showCredits = false;
hs.outlineType = 'custom';
hs.align = 'center';
hs.captionEval = 'this.a.title';
hs.dimmingOpacity = 0.7;
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
});



$(document).ready(function(){
	$("a.highslide").click(function(){
		return hs.expand(this,{ captionEval: '' });
	});
});
    
