hs.loadingText = '';
hs.restoreTitle = '';
hs.focusTitle = '';
hs.graphicDir = 'highslide/graphics/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = null;
hs.fadeInOut = true;
hs.numberOfImagesToPreload = 2;
hs.blockRightClick = true;
hs.showCredits = false;
hs.dragByHeading = false;
hs.marginTop = 0;
hs.marginBottom = 85;
hs.loadingOpacity = 0.75;
hs.marginTop = 200;
hs.dimmingOpacity = 100;
hs.dimmingDuration = 50; 
 
hs.Expander.prototype.onImageClick = function() {
	return hs.next();
}

var showNav = true;
function hideKeyDesc(){
	document.getElementById('keydescbg').style.display = 'none';
	document.getElementById('keydesc').style.display = 'none';
}
 
hs.Expander.prototype.onAfterClose = hideKeyDesc;
 
hs.Expander.prototype.onAfterExpand = function () {
	if (showNav){
		showNav = false;
		document.getElementById('keydescbg').style.display = '';
		document.getElementById('keydesc').style.display = '';
		setTimeout("hideKeyDesc();",7000);
	}
}
 
