
    hs.showCredits = false;
    hs.graphicsDir = 'hsgraphics/';
    hs.allowSizeReduction = false;
    hs.preserveContent = false;
	hs.align = 'center';
	hs.easing = 'easeInBack';
	hs.easingClose = 'easeInQuad'
	hs.fullExpandOpacity = .5;
	hs.fadeInOut= true
	hs.expandDuration = 500;
	hs.fullExpandTitle = 'Click to close image. Click and drag to move.';
	hs.restoreTitle = 'Click to close image. Click and drag to move.';
    hs.focusTitle = 'Click to close image. Click and drag to move.';
	hs.closeText = 'Close';
    hs.closeTitle = 'Close';
	
   function HsDelegate(url,caption,whereFrom) {
   // create a dummy element
   var objLink = document.createElement('a');
   // set the href
   objLink.setAttribute('href',url);
   // set onclick with Highslide parameters
   objLink.onclick = function() {
      hs.expand(this, {captionText:caption, thumbnailId:whereFrom});
   }
   // execute  
   objLink.onclick();
}



