hs.graphicsDir = '../scripts/lib/highslide/graphics/';
hs.showCredits = false;
hs.allowMultipleInstances = false;
//hs.preserveContent = false;
// hs.outlineType = null; // uncomment for custom outline
hs.expandDuration = 200;
hs.restoreDuration = 0;

// close on mouse out
hs.Expander.prototype.onMouseOut = function (sender) {
	sender.close();
};
// close if mouse is not over on expand (using the internal mouseIsOver property)
hs.Expander.prototype.onAfterExpand = function (sender) {
	if (!sender.mouseIsOver) sender.close();
};
