hs.graphicsDir = '/gfx/highslide/';
hs.showCredits = false;
hs.creditsPosition = 'bottom left';
hs.outlineType = 'rounded-white';
hs.dimmingOpacity = 0.5;
hs.allowMultipleInstances = false;
hs.enableKeyListener = false;
hs.captionEval = 'this.a.title';
hs.wrapperClassName = 'draggable-header';
hs.height = 839;
hs.width = 1300;
hs.minHeight = 200;
hs.minWidth = 255;

hs.Expander.prototype.onAfterClose = function (sender)
{
	$.ajax({
				url: '/json/lm_redirect.jsp',
				success: redirectSuccessHandler,
			});
}

hs.onDimmerClick = function() {
    return false;
}

/**
 * Handler for successful addTo operation.
 * 
 * @param responseData response data
 */
function redirectSuccessHandler(responseData)
{
	if (responseData == "true")
		location.href="/netto/shop/warenkorb.html";
}
