/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = '/js/highslide/graphics/';
hs.showCredits = false;
hs.outlineType = 'custom';
hs.align = 'center';
hs.dimmingOpacity = 0.5;
hs.captionEval = 'this.a.title';
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()
{                             
    $(".popup").each(function()
    {
        this.onclick = function() {
            return hs.expand(this);
        };   
    })       
});
