/**
*	Site-specific configuration settings for Highslide JS
*/
hs.graphicsDir = '/highslide/graphics/';

hs.showCredits = false;

hs.outlineType = 'custom';

hs.easing = 'easeInCirc';

hs.expandDuration = 100;

hs.restoreDuration = 100;

hs.allowMultipleInstances = false;

hs.enableKeyListener = false;



hs.fadeInOut = true;

hs.hideThumbOnExpand = false;

hs.restoreTitle = '';
hs.expandCursor = null;
hs.restoreCursor = null;


hs.Expander.prototype.onMouseOut = function (sender) {
	sender.close();
}

hs.Expander.prototype.onImageClick = function (sender) {
	fstr = this.a.name.split(",");
	showProduct(fstr[0],fstr[1],fstr[2],fstr[3]);
}

function hsCart(params) {
	fstr = params.split(",");
	addToCart(fstr[3],fstr[1]);
}

function hsLightbox(params) {
	fstr = params.split(",");
	addToLightbox(fstr[3]);
}