/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = 'iconoftheday/highslide/graphics/';
hs.showCredits = false;
hs.outlineType = 'custom';
hs.captionEval = 'this.thumb.alt';


// Overrides for Android, BlackBerry, iPhone, iPod, iPad, Palm and Symbian
if (/(Android|BlackBerry|iPhone|iPod|iPad|Palm|Symbian)/.test(navigator.userAgent)) {
	hs.addEventListener(document, 'ready', function() {

		// add some options that make sense on a small touchscreen
		//hs.outlineType = null; // outlines look distorted at normal zoom
		hs.expandDuration = 0; // animation is too slow anyway
		hs.restoreDuration = 0;
		hs.transitionDuration = 0;
		hs.dimmingOpacity = 0; // dimming doesn't work correct on a small touchscreen 
		hs.allowHeightReduction = false;
		hs.wrapperClassName = 'mobile-html'; // wrapperClass for touchscreens
		
	});

};

