// Apply your own settings here, or override them in the html file.  
hs.graphicsDir = '/javascripts/graphics/';
hs.restoreCursor = 'zoomout.cur'; // necessary for preload
hs.expandSteps = 10; // number of steps in zoom. Each step lasts for duration/step milliseconds.
hs.expandDuration = 250; // milliseconds
hs.restoreSteps = 10;
hs.restoreDuration = 250;
hs.marginLeft = 15;
hs.marginRight = 15;
hs.marginTop = 15;
hs.marginBottom = 15;
hs.zIndexCounter = 1001; // adjust to other absolutely positioned elements

hs.restoreTitle = '';
hs.loadingText = '';
hs.loadingTitle = '';
hs.loadingOpacity = 0.75;
hs.focusTitle = '';
hs.allowMultipleInstances= true;
hs.numberOfImagesToPreload = 5;
hs.captionSlideSpeed = 1; // set to 0 to disable slide in effect
hs.padToMinWidth = false; // pad the popup width to make room for wide caption
hs.outlineWhileAnimating = 2; // 0 = never; 1 = always; 2 = HTML only 
hs.outlineStartOffset = 3; // ends at 10
hs.fullExpandTitle = '';
hs.fullExpandPosition = 'bottom right';
hs.fullExpandOpacity = 1;
hs.showCredits = true; // you can set this to false if you want
hs.creditsText = '';
hs.creditsHref = 'http://www.a1.ru';
hs.creditsTitle = 'www.a1.ru';
hs.enableKeyListener = true;


// These settings can also be overridden inline for each image
hs.captionId = null;
hs.spaceForCaption = 30; // leaves space below images with captions
hs.slideshowGroup = null; // defines groups for next/previous links and keystrokes
hs.minWidth= 200;
hs.minHeight= 200;
hs.maxHeight= 575;
hs.allowSizeReduction= false; // allow the image to reduce to fit client size. If false, this overrides minWidth and minHeight
hs.outlineType = 'drop-shadow'; // set null to disable outlines
hs.wrapperClassName = 'draggable-header';

hs.allowWidthReduction = false;
hs.allowHeightReduction = false;
hs.preserveContent = true; // Preserve changes made to the content and position of HTML popups.
hs.objectLoadTime = 'before'; // Load iframes 'before' or 'after' expansion.
hs.cacheAjax = true; // Cache ajax popups for instant display. Can be overridden for each popup.
hs.dragByHeading = true;
hs.skin = {
	contentWrapper:
		'<div class="highslide-header"><ul>'+
			'<li class="highslide-previous">'+
				'<a href="#" title="{hs.lang.previousTitle}" onclick="return hs.previous(this)">'+
				'<span>{hs.lang.previousText}</span></a>'+
			'</li>'+
			'<li class="highslide-next">'+
				'<a href="#" title="{hs.lang.nextTitle}" onclick="return hs.next(this)">'+
				'<span>{hs.lang.nextText}</span></a>'+
			'</li>'+
			'<li class="highslide-move">'+
				'<a href="#" title="{hs.lang.moveTitle}" onclick="return false">'+
				'<span>{hs.lang.moveText}</span></a>'+
			'</li>'+
			'<li class="highslide-close">'+
				'<a href="#" title="{hs.lang.closeTitle}" onclick="return hs.close(this)">'+
				'<span>{hs.lang.closeText}</span></a>'+
			'</li>'+
		'</ul></div>'+
		'<div class="highslide-body"></div>'+
		'<div class="highslide-footer"></div>'
};