// clones caption but uses original efectively nuking it
HsExpander.prototype.captionGetter = HsExpander.prototype.getCaption;
// but if you ask first it will cache clone and use clone's clone
HsExpander.prototype.getCaption = function() { hs.getNode(this.captionId); return this.captionGetter(); };
/*//mouseout to close
hs.Expanderer = HsExpander;
HsExpander = hs.Expander = function(a, params, custom, contentType)
{
	this.Expanderer(a, params, custom, contentType);
	var hsmouseout = this.wrapper.onmouseout;
	var expander = this;
	this.wrapper.onmouseout = function(e) { hsmouseout(e); expander.close(); };
};
HsExpander.prototype = hs.Expanderer.prototype;
HsExpander.prototype.Expanderer = hs.Expanderer;
delete hs.Expanderer;
*/
hs.registerOverlay( {
	thumbnailId: null,
	overlayId: 'controlbar',
	position: 'top right',
	hideOnMouseOut: true
});
hs.graphicsDir = 'scripts/graphics/';
hs.allowMultipleInstances = false;
hs.captionSlideSpeed = 0;
hs.showCredits = false;
hs.align = 'center';
hs.outlineType = 'glossy-dark';
hs.marginTop = 225;
