	hs.graphicsDir = './images/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = 'rounded-white';
	hs.fadeInOut = true;
  hs.dimmingOpacity = 0.65;
	hs.wrapperClassName = 'dark borderless floating-caption';
  hs.onDimmerClick = function() { return false; }
  hs.allowSizeReduction = true;
  hs.addEventListener(window, 'resize', function()
  {
   var i, exp;
   hs.page = hs.getPageSize();
   for (i = 0; i < hs.expanders.length; i++) {
      exp = hs.expanders[i];
      if (exp) {
         // get new left and top
         exp.x.scroll = hs.page.scrollLeft;
         exp.x.clientSize = hs.page.width;
         exp.y.scroll = hs.page.scrollTop;
         exp.y.clientSize = hs.page.height;
         exp.justify(exp.x);
         exp.justify(exp.y);

         // set new left and top to wrapper and outline
         exp.moveTo(exp.x.pos, exp.y.pos);
      }
   }
  });
hs.marginLeft = 0;
hs.marginRight = 0;
hs.marginTop = 65;
hs.marginBottom = 65;
hs.zIndexCounter = 5;





