/******************************************************************************
Name:    Highslide JS
Version: 4.1.5 (June 26 2009)
Config:  default +inline +ajax +iframe +flash
Author:  Torstein Hønsi
Support: http://highslide.com/support

Licence:
Highslide JS is licensed under a Creative Commons Attribution-NonCommercial 2.5
License (http://creativecommons.org/licenses/by-nc/2.5/).

You are free:
* to copy, distribute, display, and perform the work
* to make derivative works

Under the following conditions:
* Attribution. You must attribute the work in the manner  specified by  the
author or licensor.
* Noncommercial. You may not use this work for commercial purposes.

* For  any  reuse  or  distribution, you  must make clear to others the license
terms of this work.
* Any  of  these  conditions  can  be  waived  if  you  get permission from the 
copyright holder.

Your fair use and other rights are in no way affected by the above.
******************************************************************************/
var hs2 = {
    // Language strings
    lang: {
        cssDirection: 'ltr',
        loadingText: 'Loading...',
        loadingTitle: 'Click to cancel',
        focusTitle: 'Click to bring to front',
        fullExpandTitle: 'Expand to actual size (f)',
        creditsText: 'Powered by <i>Highslide JS</i>',
        creditsTitle: 'Go to the Highslide JS homepage',
        previousText: 'Previous',
        nextText: 'Next',
        moveText: 'Move',
        closeText: 'Close',
        closeTitle: 'Close (esc)',
        resizeTitle: 'Resize',
        playText: 'Play',
        playTitle: 'Play slideshow (spacebar)',
        pauseText: 'Pause',
        pauseTitle: 'Pause slideshow (spacebar)',
        previousTitle: 'Previous (arrow left)',
        nextTitle: 'Next (arrow right)',
        moveTitle: 'Move',
        fullExpandText: '1:1',
        restoreTitle: 'Click to close image, click and drag to move. Use arrow keys for next and previous.'
    },
    // See http://highslide.com/ref for examples of settings  
    graphicsDir: 'highslide/graphics/',
    expandCursor: 'zoomin.cur', // null disables
    restoreCursor: 'zoomout.cur', // null disables
    expandDuration: 250, // milliseconds
    restoreDuration: 250,
    marginLeft: 15,
    marginRight: 15,
    marginTop: 15,
    marginBottom: 15,
    zIndexCounter: 1001, // adjust to other absolutely positioned elements
    loadingOpacity: 0.75,
    allowMultipleInstances: true,
    numberOfImagesToPreload: 5,
    outlineWhileAnimating: 2, // 0 = never, 1 = always, 2 = HTML only 
    outlineStartOffset: 3, // ends at 10
    padToMinWidth: false, // pad the popup width to make room for wide caption
    fullExpandPosition: 'bottom right',
    fullExpandOpacity: 1,
    showCredits: true, // you can set this to false if you want
    creditsHref: 'http://highslide.com/',
    creditsTarget: '_self',
    enableKeyListener: true,
    openerTagNames: ['a'], // Add more to allow slideshow indexing

    allowWidthReduction: false,
    allowHeightReduction: true,
    preserveContent: true, // Preserve changes made to the content and position of HTML popups.
    objectLoadTime: 'before', // Load iframes 'before' or 'after' expansion.
    cacheAjax: true, // Cache ajax popups for instant display. Can be overridden for each popup.
    dragByHeading: true,
    minWidth: 200,
    minHeight: 200,
    allowSizeReduction: true, // allow the image to reduce to fit client size. If false, this overrides minWidth and minHeight
    outlineType: 'drop-shadow', // set null to disable outlines
    skin: {
        contentWrapper:
		'<div class="highslide-header"><ul>' +
			'<li class="highslide-previous">' +
				'<a href="#" title="{hs2.lang.previousTitle}" onclick="return hs2.previous(this)">' +
				'<span>{hs2.lang.previousText}</span></a>' +
			'</li>' +
			'<li class="highslide-next">' +
				'<a href="#" title="{hs2.lang.nextTitle}" onclick="return hs2.next(this)">' +
				'<span>{hs2.lang.nextText}</span></a>' +
			'</li>' +
			'<li class="highslide-move">' +
				'<a href="#" title="{hs2.lang.moveTitle}" onclick="return false">' +
				'<span>{hs2.lang.moveText}</span></a>' +
			'</li>' +
			'<li class="highslide-close">' +
				'<a href="#" title="{hs2.lang.closeTitle}" onclick="return hs2.close(this)">' +
				'<span>{hs2.lang.closeText}</span></a>' +
			'</li>' +
		'</ul></div>' +
		'<div class="highslide-body"></div>' +
		'<div class="highslide-footer"><div>' +
			'<span class="highslide-resize" title="{hs2.lang.resizeTitle}"><span></span></span>' +
		'</div></div>'
    },
    // END OF YOUR SETTINGS


    // declare internal properties
    preloadTheseImages: [],
    continuePreloading: true,
    expanders: [],
    overrides: [
	'allowSizeReduction',
	'useBox',
	'outlineType',
	'outlineWhileAnimating',
	'captionId',
	'captionText',
	'captionEval',
	'captionOverlay',
	'headingId',
	'headingText',
	'headingEval',
	'headingOverlay',
	'creditsPosition',
	'dragByHeading',

	'width',
	'height',

	'contentId',
	'allowWidthReduction',
	'allowHeightReduction',
	'preserveContent',
	'maincontentId',
	'maincontentText',
	'maincontentEval',
	'objectType',
	'cacheAjax',
	'objectWidth',
	'objectHeight',
	'objectLoadTime',
	'swfOptions',
	'wrapperClassName',
	'minWidth',
	'minHeight',
	'maxWidth',
	'maxHeight',
	'slideshowGroup',
	'easing',
	'easingClose',
	'fadeInOut',
	'src'
],
    overlays: [],
    idCounter: 0,
    oPos: {
        x: ['leftpanel', 'left', 'center', 'right', 'rightpanel'],
        y: ['above', 'top', 'middle', 'bottom', 'below']
    },
    mouse: {},
    headingOverlay: {},
    captionOverlay: {},
    swfOptions: { flashvars: {}, params: {}, attributes: {} },
    timers: [],

    pendingOutlines: {},
    sleeping: [],
    preloadTheseAjax: [],
    cacheBindings: [],
    cachedGets: {},
    clones: {},
    onReady: [],
    uaVersion: parseFloat((navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/) || [0, '0'])[1]),
    ie: (document.all && !window.opera),
    safari: /Safari/.test(navigator.userAgent),
    geckoMac: /Macintosh.+rv:1\.[0-8].+Gecko/.test(navigator.userAgent),

    $: function(id) {
        if (id) return document.getElementById(id);
    },

    push: function(arr, val) {
        arr[arr.length] = val;
    },

    createElement: function(tag, attribs, styles, parent, nopad) {
        var el = document.createElement(tag);
        if (attribs) hs2.extend(el, attribs);
        if (nopad) hs2.setStyles(el, { padding: 0, border: 'none', margin: 0 });
        if (styles) hs2.setStyles(el, styles);
        if (parent) parent.appendChild(el);
        return el;
    },

    extend: function(el, attribs) {
        for (var x in attribs) el[x] = attribs[x];
        return el;
    },

    setStyles: function(el, styles) {
        for (var x in styles) {
            if (hs2.ie && x == 'opacity') {
                if (styles[x] > 0.99) el.style.removeAttribute('filter');
                else el.style.filter = 'alpha(opacity=' + (styles[x] * 100) + ')';
            }
            else el.style[x] = styles[x];
        }
    },
    animate: function(el, prop, opt) {
        var start,
		end,
		unit;
        if (typeof opt != 'object' || opt === null) {
            var args = arguments;
            opt = {
                duration: args[2],
                easing: args[3],
                complete: args[4]
            };
        }
        if (typeof opt.duration != 'number') opt.duration = 250;
        opt.easing = Math[opt.easing] || Math.easeInQuad;
        opt.curAnim = hs2.extend({}, prop);
        for (var name in prop) {
            var e = new hs2.fx(el, opt, name);

            start = parseFloat(hs2.css(el, name)) || 0;
            end = parseFloat(prop[name]);
            unit = name != 'opacity' ? 'px' : '';

            e.custom(start, end, unit);
        }
    },
    css: function(el, prop) {
        if (document.defaultView) {
            return document.defaultView.getComputedStyle(el, null).getPropertyValue(prop);

        } else {
            if (prop == 'opacity') prop = 'filter';
            var val = el.currentStyle[prop.replace(/\-(\w)/g, function(a, b) { return b.toUpperCase(); })];
            if (prop == 'filter')
                val = val.replace(/alpha\(opacity=([0-9]+)\)/,
				function(a, b) { return b / 100 });
            return val === '' ? 1 : val;
        }
    },

    getPageSize: function() {
        var d = document, w = window, iebody = d.compatMode && d.compatMode != 'BackCompat'
		? d.documentElement : d.body;

        var width = hs2.ie ? iebody.clientWidth :
			(d.documentElement.clientWidth || self.innerWidth),
		height = hs2.ie ? iebody.clientHeight : self.innerHeight;

        hs2.page = {
            width: width,
            height: height,
            scrollLeft: hs2.ie ? iebody.scrollLeft : pageXOffset,
            scrollTop: hs2.ie ? iebody.scrollTop : pageYOffset
        }
    },

    getPosition: function(el) {
        var p = { x: el.offsetLeft, y: el.offsetTop };
        while (el.offsetParent) {
            el = el.offsetParent;
            p.x += el.offsetLeft;
            p.y += el.offsetTop;
            if (el != document.body && el != document.documentElement) {
                p.x -= el.scrollLeft;
                p.y -= el.scrollTop;
            }
        }
        return p;
    },

    expand: function(a, params, custom, type) {
        if (!a) a = hs2.createElement('a', null, { display: 'none' }, hs2.container);
        if (typeof a.getParams == 'function') return params;
        if (type == 'html') {
            for (var i = 0; i < hs2.sleeping.length; i++) {
                if (hs2.sleeping[i] && hs2.sleeping[i].a == a) {
                    hs2.sleeping[i].awake();
                    hs2.sleeping[i] = null;
                    return false;
                }
            }
            hs2.hasHtmlExpanders = true;
        }
        try {
            new hs2.Expander(a, params, custom, type);
            return false;
        } catch (e) { return true; }
    },

    htmlExpand: function(a, params, custom) {
        return hs2.expand(a, params, custom, 'html');
    },

    getSelfRendered: function() {
        return hs2.createElement('div', {
            className: 'highslide-html-content',
            innerHTML: hs2.replaceLang(hs2.skin.contentWrapper)
        });
    },
    getElementByClass: function(el, tagName, className) {
        var els = el.getElementsByTagName(tagName);
        for (var i = 0; i < els.length; i++) {
            if ((new RegExp(className)).test(els[i].className)) {
                return els[i];
            }
        }
        return null;
    },
    replaceLang: function(s) {
        s = s.replace(/\s/g, ' ');
        var re = /{hs2\.lang\.([^}]+)\}/g,
		matches = s.match(re),
		lang;
        if (matches) for (var i = 0; i < matches.length; i++) {
            lang = matches[i].replace(re, "$1");
            if (typeof hs2.lang[lang] != 'undefined') s = s.replace(matches[i], hs2.lang[lang]);
        }
        return s;
    },


    getCacheBinding: function(a) {
        for (var i = 0; i < hs2.cacheBindings.length; i++) {
            if (hs2.cacheBindings[i][0] == a) {
                var c = hs2.cacheBindings[i][1];
                hs2.cacheBindings[i][1] = c.cloneNode(1);
                return c;
            }
        }
        return null;
    },

    preloadAjax: function(e) {
        var arr = hs2.getAnchors();
        for (var i = 0; i < arr.htmls.length; i++) {
            var a = arr.htmls[i];
            if (hs2.getParam(a, 'objectType') == 'ajax' && hs2.getParam(a, 'cacheAjax'))
                hs2.push(hs2.preloadTheseAjax, a);
        }

        hs2.preloadAjaxElement(0);
    },

    preloadAjaxElement: function(i) {
        if (!hs2.preloadTheseAjax[i]) return;
        var a = hs2.preloadTheseAjax[i];
        var cache = hs2.getNode(hs2.getParam(a, 'contentId'));
        if (!cache) cache = hs2.getSelfRendered();
        var ajax = new hs2.Ajax(a, cache, 1);
        ajax.onError = function() { };
        ajax.onLoad = function() {
            hs2.push(hs2.cacheBindings, [a, cache]);
            hs2.preloadAjaxElement(i + 1);
        };
        ajax.run();
    },

    focusTopmost: function() {
        var topZ = 0,
		topmostKey = -1,
		expanders = hs2.expanders,
		exp,
		zIndex;
        for (var i = 0; i < expanders.length; i++) {
            exp = expanders[i];
            if (exp) {
                zIndex = exp.wrapper.style.zIndex;
                if (zIndex && zIndex > topZ) {
                    topZ = zIndex;
                    topmostKey = i;
                }
            }
        }
        if (topmostKey == -1) hs2.focusKey = -1;
        else expanders[topmostKey].focus();
    },

    getParam: function(a, param) {
        a.getParams = a.onclick;
        var p = a.getParams ? a.getParams() : null;
        a.getParams = null;

        return (p && typeof p[param] != 'undefined') ? p[param] :
		(typeof hs2[param] != 'undefined' ? hs2[param] : null);
    },

    getSrc: function(a) {
        var src = hs2.getParam(a, 'src');
        if (src) return src;
        return a.href;
    },

    getNode: function(id) {
        var node = hs2.$(id), clone = hs2.clones[id], a = {};
        if (!node && !clone) return null;
        if (!clone) {
            clone = node.cloneNode(true);
            clone.id = '';
            hs2.clones[id] = clone;
            return node;
        } else {
            return clone.cloneNode(true);
        }
    },

    discardElement: function(d) {
        if (d) hs2.garbageBin.appendChild(d);
        hs2.garbageBin.innerHTML = '';
    },
    transit: function(adj, exp) {
        var last = exp = exp || hs2.getExpander();
        if (hs2.upcoming) return false;
        else hs2.last = last;
        try {
            hs2.upcoming = adj;
            adj.onclick();
        } catch (e) {
            hs2.last = hs2.upcoming = null;
        }
        try {
            exp.close();
        } catch (e) { }
        return false;
    },

    previousOrNext: function(el, op) {
        var exp = hs2.getExpander(el);
        if (exp) {
            adj = exp.getAdjacentAnchor(op);
            return hs2.transit(adj, exp);
        } else return false;
    },

    previous: function(el) {
        return hs2.previousOrNext(el, -1);
    },

    next: function(el) {
        return hs2.previousOrNext(el, 1);
    },

    keyHandler: function(e) {
        if (!e) e = window.event;
        if (!e.target) e.target = e.srcElement; // ie
        if (typeof e.target.form != 'undefined') return true; // form element has focus
        var exp = hs2.getExpander();

        var op = null;
        switch (e.keyCode) {
            case 70: // f
                if (exp) exp.doFullExpand();
                return true;
            case 32: // Space
            case 34: // Page Down
            case 39: // Arrow right
            case 40: // Arrow down
                op = 1;
                break;
            case 8:  // Backspace
            case 33: // Page Up
            case 37: // Arrow left
            case 38: // Arrow up
                op = -1;
                break;
            case 27: // Escape
            case 13: // Enter
                op = 0;
        }
        if (op !== null) {
            hs2.removeEventListener(document, window.opera ? 'keypress' : 'keydown', hs2.keyHandler);
            if (!hs2.enableKeyListener) return true;

            if (e.preventDefault) e.preventDefault();
            else e.returnValue = false;
            if (exp) {
                if (op == 0) {
                    exp.close();
                } else {
                    hs2.previousOrNext(exp.key, op);
                }
                return false;
            }
        }
        return true;
    },


    registerOverlay: function(overlay) {
        hs2.push(hs2.overlays, hs2.extend(overlay, { hsId: 'hsId' + hs2.idCounter++ }));
    },


    getWrapperKey: function(element, expOnly) {
        var el, re = /^highslide-wrapper-([0-9]+)$/;
        // 1. look in open expanders
        el = element;
        while (el.parentNode) {
            if (el.id && re.test(el.id)) return el.id.replace(re, "$1");
            el = el.parentNode;
        }
        // 2. look in thumbnail
        if (!expOnly) {
            el = element;
            while (el.parentNode) {
                if (el.tagName && hs2.isHsAnchor(el)) {
                    for (var key = 0; key < hs2.expanders.length; key++) {
                        var exp = hs2.expanders[key];
                        if (exp && exp.a == el) return key;
                    }
                }
                el = el.parentNode;
            }
        }
        return null;
    },

    getExpander: function(el, expOnly) {
        if (typeof el == 'undefined') return hs2.expanders[hs2.focusKey] || null;
        if (typeof el == 'number') return hs2.expanders[el] || null;
        if (typeof el == 'string') el = hs2.$(el);
        return hs2.expanders[hs2.getWrapperKey(el, expOnly)] || null;
    },

    isHsAnchor: function(a) {
        return (a.onclick && a.onclick.toString().replace(/\s/g, ' ').match(/hs2.(htmlE|e)xpand/));
    },

    reOrder: function() {
        for (var i = 0; i < hs2.expanders.length; i++)
            if (hs2.expanders[i] && hs2.expanders[i].isExpanded) hs2.focusTopmost();
    },

    mouseClickHandler: function(e) {
        if (!e) e = window.event;
        if (e.button > 1) return true;
        if (!e.target) e.target = e.srcElement;

        var el = e.target;
        while (el.parentNode
		&& !(/highslide-(image|move|html|resize)/.test(el.className))) {
            el = el.parentNode;
        }
        var exp = hs2.getExpander(el);
        if (exp && (exp.isClosing || !exp.isExpanded)) return true;

        if (exp && e.type == 'mousedown') {
            if (e.target.form) return true;
            var match = el.className.match(/highslide-(image|move|resize)/);
            if (match) {
                hs2.dragArgs = { exp: exp, type: match[1], left: exp.x.pos, width: exp.x.size, top: exp.y.pos,
                    height: exp.y.size, clickX: e.clientX, clickY: e.clientY
                };


                hs2.addEventListener(document, 'mousemove', hs2.dragHandler);
                if (e.preventDefault) e.preventDefault(); // FF

                if (/highslide-(image|html)-blur/.test(exp.content.className)) {
                    exp.focus();
                    hs2.hasFocused = true;
                }
                return false;
            }
            else if (/highslide-html/.test(el.className) && hs2.focusKey != exp.key) {
                exp.focus();
                exp.doShowHide('hidden');
            }
        } else if (e.type == 'mouseup') {

            hs2.removeEventListener(document, 'mousemove', hs2.dragHandler);

            if (hs2.dragArgs) {
                if (hs2.styleRestoreCursor && hs2.dragArgs.type == 'image')
                    hs2.dragArgs.exp.content.style.cursor = hs2.styleRestoreCursor;
                var hasDragged = hs2.dragArgs.hasDragged;

                if (!hasDragged && !hs2.hasFocused && !/(move|resize)/.test(hs2.dragArgs.type)) {
                    exp.close();
                }
                else if (hasDragged || (!hasDragged && hs2.hasHtmlExpanders)) {
                    hs2.dragArgs.exp.doShowHide('hidden');
                }

                if (hs2.dragArgs.exp.releaseMask)
                    hs2.dragArgs.exp.releaseMask.style.display = 'none';

                hs2.hasFocused = false;
                hs2.dragArgs = null;

            } else if (/highslide-image-blur/.test(el.className)) {
                el.style.cursor = hs2.styleRestoreCursor;
            }
        }
        return false;
    },

    dragHandler: function(e) {
        if (!hs2.dragArgs) return true;
        if (!e) e = window.event;
        var a = hs2.dragArgs, exp = a.exp;
        if (exp.iframe) {
            if (!exp.releaseMask) exp.releaseMask = hs2.createElement('div', null,
			{ position: 'absolute', width: exp.x.size + 'px', height: exp.y.size + 'px',
			    left: exp.x.cb + 'px', top: exp.y.cb + 'px', zIndex: 4, background: (hs2.ie ? 'white' : 'none'),
			    opacity: .01
			},
			exp.wrapper, true);
            if (exp.releaseMask.style.display == 'none')
                exp.releaseMask.style.display = '';
        }

        a.dX = e.clientX - a.clickX;
        a.dY = e.clientY - a.clickY;

        var distance = Math.sqrt(Math.pow(a.dX, 2) + Math.pow(a.dY, 2));
        if (!a.hasDragged) a.hasDragged = (a.type != 'image' && distance > 0)
		|| (distance > (hs2.dragSensitivity || 5));

        if (a.hasDragged && e.clientX > 5 && e.clientY > 5) {

            if (a.type == 'resize') exp.resize(a);
            else {
                exp.moveTo(a.left + a.dX, a.top + a.dY);
                if (a.type == 'image') exp.content.style.cursor = 'move';
            }
        }
        return false;
    },

    wrapperMouseHandler: function(e) {
        try {
            if (!e) e = window.event;
            var over = /mouseover/i.test(e.type);
            if (!e.target) e.target = e.srcElement; // ie
            if (hs2.ie) e.relatedTarget =
			over ? e.fromElement : e.toElement; // ie
            var exp = hs2.getExpander(e.target);
            if (!exp.isExpanded) return;
            if (!exp || !e.relatedTarget || hs2.getExpander(e.relatedTarget, true) == exp
			|| hs2.dragArgs) return;
            for (var i = 0; i < exp.overlays.length; i++) (function() {
                var o = hs2.$('hsId' + exp.overlays[i]);
                if (o && o.hideOnMouseOut) {
                    if (over) hs2.setStyles(o, { visibility: 'visible', display: '' });
                    hs2.animate(o, { opacity: over ? o.opacity : 0 }, o.dur);
                }
            })();
        } catch (e) { }
    },
    addEventListener: function(el, event, func) {
        if (el == document && event == 'ready') hs2.push(hs2.onReady, func);
        try {
            el.addEventListener(event, func, false);
        } catch (e) {
            try {
                el.detachEvent('on' + event, func);
                el.attachEvent('on' + event, func);
            } catch (e) {
                el['on' + event] = func;
            }
        }
    },

    removeEventListener: function(el, event, func) {
        try {
            el.removeEventListener(event, func, false);
        } catch (e) {
            try {
                el.detachEvent('on' + event, func);
            } catch (e) {
                el['on' + event] = null;
            }
        }
    },

    preloadFullImage: function(i) {
        if (hs2.continuePreloading && hs2.preloadTheseImages[i] && hs2.preloadTheseImages[i] != 'undefined') {
            var img = document.createElement('img');
            img.onload = function() {
                img = null;
                hs2.preloadFullImage(i + 1);
            };
            img.src = hs2.preloadTheseImages[i];
        }
    },
    preloadImages: function(number) {
        if (number && typeof number != 'object') hs2.numberOfImagesToPreload = number;

        var arr = hs2.getAnchors();
        for (var i = 0; i < arr.images.length && i < hs2.numberOfImagesToPreload; i++) {
            hs2.push(hs2.preloadTheseImages, hs2.getSrc(arr.images[i]));
        }

        // preload outlines
        if (hs2.outlineType) new hs2.Outline(hs2.outlineType, function() { hs2.preloadFullImage(0) });
        else

            hs2.preloadFullImage(0);

        // preload cursor
        if (hs2.restoreCursor) var cur = hs2.createElement('img', { src: hs2.graphicsDir + hs2.restoreCursor });
    },


    init: function() {
        if (!hs2.container) {

            hs2.getPageSize();
            hs2.ieLt7 = hs2.ie && hs2.uaVersion < 7;
            hs2.ie6SSL = hs2.ieLt7 && location.protocol == 'https:';
            for (var x in hs2.langDefaults) {
                if (typeof hs2[x] != 'undefined') hs2.lang[x] = hs2[x];
                else if (typeof hs2.lang[x] == 'undefined' && typeof hs2.langDefaults[x] != 'undefined')
                    hs2.lang[x] = hs2.langDefaults[x];
            }

            hs2.container = hs2.createElement('div', {
                className: 'highslide-container'
            }, {
                position: 'absolute',
                left: 0,
                top: 0,
                width: '100%',
                zIndex: hs2.zIndexCounter,
                direction: 'ltr'
            },
			document.body,
			true
		);
            hs2.loading = hs2.createElement('a', {
                className: 'highslide-loading',
                title: hs2.lang.loadingTitle,
                innerHTML: hs2.lang.loadingText,
                href: 'javascript:;'
            }, {
                position: 'absolute',
                top: '-9999px',
                opacity: hs2.loadingOpacity,
                zIndex: 1
            }, hs2.container
		);
            hs2.garbageBin = hs2.createElement('div', null, { display: 'none' }, hs2.container);
            hs2.clearing = hs2.createElement('div', null,
			{ clear: 'both', paddingTop: '1px' }, null, true);

            // http://www.robertpenner.com/easing/ 
            Math.linearTween = function(t, b, c, d) {
                return c * t / d + b;
            };
            Math.easeInQuad = function(t, b, c, d) {
                return c * (t /= d) * t + b;
            };

            hs2.hideSelects = hs2.ieLt7;
            hs2.hideIframes = ((window.opera && hs2.uaVersion < 9) || navigator.vendor == 'KDE'
			|| (hs2.ie && hs2.uaVersion < 5.5));
        }
    },
    ready: function() {
        if (hs2.isReady) return;
        hs2.isReady = true;

        for (var i = 0; i < hs2.onReady.length; i++) hs2.onReady[i]();
    },

    updateAnchors: function() {
        var el, els, all = [], images = [], htmls = [], groups = {}, re;

        for (var i = 0; i < hs2.openerTagNames.length; i++) {
            els = document.getElementsByTagName(hs2.openerTagNames[i]);
            for (var j = 0; j < els.length; j++) {
                el = els[j];
                re = hs2.isHsAnchor(el);
                if (re) {
                    hs2.push(all, el);
                    if (re[0] == 'hs2.expand') hs2.push(images, el);
                    else if (re[0] == 'hs2.htmlExpand') hs2.push(htmls, el);
                    var g = hs2.getParam(el, 'slideshowGroup') || 'none';
                    if (!groups[g]) groups[g] = [];
                    hs2.push(groups[g], el);
                }
            }
        }
        hs2.anchors = { all: all, groups: groups, images: images, htmls: htmls };
        return hs2.anchors;

    },

    getAnchors: function() {
        return hs2.anchors || hs2.updateAnchors();
    },


    close: function(el) {
        var exp = hs2.getExpander(el);
        if (exp) exp.close();
        return false;
    }
}; // end hs2 object
hs2.fx = function(elem, options, prop) {
    this.options = options;
    this.elem = elem;
    this.prop = prop;

    if (!options.orig) options.orig = {};
};
hs2.fx.prototype = {
    update: function() {
        (hs2.fx.step[this.prop] || hs2.fx.step._default)(this);

        if (this.options.step)
            this.options.step.call(this.elem, this.now, this);

    },
    custom: function(from, to, unit) {
        this.startTime = (new Date()).getTime();
        this.start = from;
        this.end = to;
        this.unit = unit; // || this.unit || "px";
        this.now = this.start;
        this.pos = this.state = 0;

        var self = this;
        function t(gotoEnd) {
            return self.step(gotoEnd);
        }

        t.elem = this.elem;

        if (t() && hs2.timers.push(t) == 1) {
            hs2.timerId = setInterval(function() {
                var timers = hs2.timers;

                for (var i = 0; i < timers.length; i++)
                    if (!timers[i]())
                    timers.splice(i--, 1);

                if (!timers.length) {
                    clearInterval(hs2.timerId);
                }
            }, 13);
        }
    },
    step: function(gotoEnd) {
        var t = (new Date()).getTime();
        if (gotoEnd || t >= this.options.duration + this.startTime) {
            this.now = this.end;
            this.pos = this.state = 1;
            this.update();

            this.options.curAnim[this.prop] = true;

            var done = true;
            for (var i in this.options.curAnim)
                if (this.options.curAnim[i] !== true)
                done = false;

            if (done) {
                if (this.options.complete) this.options.complete.call(this.elem);
            }
            return false;
        } else {
            var n = t - this.startTime;
            this.state = n / this.options.duration;
            this.pos = this.options.easing(n, 0, 1, this.options.duration);
            this.now = this.start + ((this.end - this.start) * this.pos);
            this.update();
        }
        return true;
    }

};

hs2.extend(hs2.fx, {
    step: {

        opacity: function(fx) {
            hs2.setStyles(fx.elem, { opacity: fx.now });
        },

        _default: function(fx) {
            if (fx.elem.style && fx.elem.style[fx.prop] != null)
                fx.elem.style[fx.prop] = fx.now + fx.unit;
            else
                fx.elem[fx.prop] = fx.now;
        }
    }
});

hs2.Outline = function(outlineType, onLoad) {
    this.onLoad = onLoad;
    this.outlineType = outlineType;
    var v = hs2.uaVersion, tr;

    this.hasAlphaImageLoader = hs2.ie && v >= 5.5 && v < 7;
    if (!outlineType) {
        if (onLoad) onLoad();
        return;
    }

    hs2.init();
    this.table = hs2.createElement(
		'table', {
		    cellSpacing: 0
		}, {
		    visibility: 'hidden',
		    position: 'absolute',
		    borderCollapse: 'collapse',
		    width: 0
		},
		hs2.container,
		true
	);
    var tbody = hs2.createElement('tbody', null, null, this.table, 1);

    this.td = [];
    for (var i = 0; i <= 8; i++) {
        if (i % 3 == 0) tr = hs2.createElement('tr', null, { height: 'auto' }, tbody, true);
        this.td[i] = hs2.createElement('td', null, null, tr, true);
        var style = i != 4 ? { lineHeight: 0, fontSize: 0} : { position: 'relative' };
        hs2.setStyles(this.td[i], style);
    }
    this.td[4].className = outlineType + ' highslide-outline';

    this.preloadGraphic();
};

hs2.Outline.prototype = {
    preloadGraphic: function() {
        var src = hs2.graphicsDir + (hs2.outlinesDir || "outlines/") + this.outlineType + ".png";

        var appendTo = hs2.safari ? hs2.container : null;
        this.graphic = hs2.createElement('img', null, { position: 'absolute',
            top: '-9999px'
        }, appendTo, true); // for onload trigger

        var pThis = this;
        this.graphic.onload = function() { pThis.onGraphicLoad(); };

        this.graphic.src = src;
    },

    onGraphicLoad: function() {
        var o = this.offset = this.graphic.width / 4,
		pos = [[0, 0], [0, -4], [-2, 0], [0, -8], 0, [-2, -8], [0, -2], [0, -6], [-2, -2]],
		dim = { height: (2 * o) + 'px', width: (2 * o) + 'px' };
        for (var i = 0; i <= 8; i++) {
            if (pos[i]) {
                if (this.hasAlphaImageLoader) {
                    var w = (i == 1 || i == 7) ? '100%' : this.graphic.width + 'px';
                    var div = hs2.createElement('div', null, { width: '100%', height: '100%', position: 'relative', overflow: 'hidden' }, this.td[i], true);
                    hs2.createElement('div', null, {
                        filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale, src='" + this.graphic.src + "')",
                        position: 'absolute',
                        width: w,
                        height: this.graphic.height + 'px',
                        left: (pos[i][0] * o) + 'px',
                        top: (pos[i][1] * o) + 'px'
                    },
				div,
				true);
                } else {
                    hs2.setStyles(this.td[i], { background: 'url(' + this.graphic.src + ') ' + (pos[i][0] * o) + 'px ' + (pos[i][1] * o) + 'px' });
                }

                if (window.opera && (i == 3 || i == 5))
                    hs2.createElement('div', null, dim, this.td[i], true);

                hs2.setStyles(this.td[i], dim);
            }
        }
        this.graphic = null;
        if (hs2.pendingOutlines[this.outlineType]) hs2.pendingOutlines[this.outlineType].destroy();
        hs2.pendingOutlines[this.outlineType] = this;
        if (this.onLoad) this.onLoad();
    },

    setPosition: function(pos, offset, vis, dur, easing) {
        var exp = this.exp,
		stl = exp.wrapper.style,
		offset = offset || 0,
		pos = pos || {
		    x: exp.x.pos + offset,
		    y: exp.y.pos + offset,
		    w: exp.x.get('wsize') - 2 * offset,
		    h: exp.y.get('wsize') - 2 * offset
		};
        if (vis) this.table.style.visibility = (pos.h >= 4 * this.offset)
		? 'visible' : 'hidden';
        hs2.setStyles(this.table, {
            left: (pos.x - this.offset) + 'px',
            top: (pos.y - this.offset) + 'px',
            width: (pos.w + 2 * this.offset) + 'px'
        });

        pos.w -= 2 * this.offset;
        pos.h -= 2 * this.offset;
        hs2.setStyles(this.td[4], {
            width: pos.w >= 0 ? pos.w + 'px' : 0,
            height: pos.h >= 0 ? pos.h + 'px' : 0
        });
        if (this.hasAlphaImageLoader) this.td[3].style.height
		= this.td[5].style.height = this.td[4].style.height;

    },

    destroy: function(hide) {
        if (hide) this.table.style.visibility = 'hidden';
        else hs2.discardElement(this.table);
    }
};

hs2.Dimension = function(exp, dim) {
    this.exp = exp;
    this.dim = dim;
    this.ucwh = dim == 'x' ? 'Width' : 'Height';
    this.wh = this.ucwh.toLowerCase();
    this.uclt = dim == 'x' ? 'Left' : 'Top';
    this.lt = this.uclt.toLowerCase();
    this.ucrb = dim == 'x' ? 'Right' : 'Bottom';
    this.rb = this.ucrb.toLowerCase();
    this.p1 = this.p2 = 0;
};
hs2.Dimension.prototype = {
    get: function(key) {
        switch (key) {
            case 'loadingPos':
                return this.tpos + this.tb + (this.t - hs2.loading['offset' + this.ucwh]) / 2;
            case 'wsize':
                return this.size + 2 * this.cb + this.p1 + this.p2;
            case 'fitsize':
                return this.clientSize - this.marginMin - this.marginMax;
            case 'maxsize':
                return this.get('fitsize') - 2 * this.cb - this.p1 - this.p2;
            case 'opos':
                return this.pos - (this.exp.outline ? this.exp.outline.offset : 0);
            case 'osize':
                return this.get('wsize') + (this.exp.outline ? 2 * this.exp.outline.offset : 0);
            case 'imgPad':
                return this.imgSize ? Math.round((this.size - this.imgSize) / 2) : 0;

        }
    },
    calcBorders: function() {
        // correct for borders
        this.cb = (this.exp.content['offset' + this.ucwh] - this.t) / 2;
        this.marginMax = hs2['margin' + this.ucrb];
    },
    calcThumb: function() {
        this.t = this.exp.el[this.wh] ? parseInt(this.exp.el[this.wh]) :
		this.exp.el['offset' + this.ucwh];
        this.tpos = this.exp.tpos[this.dim];
        this.tb = (this.exp.el['offset' + this.ucwh] - this.t) / 2;
        if (this.tpos < 1) {
            this.tpos = (hs2.page[this.wh] / 2) + hs2.page['scroll' + this.uclt];
        };
    },
    calcExpanded: function() {
        var exp = this.exp;
        this.justify = 'auto';


        // size and position
        this.pos = this.tpos - this.cb + this.tb;
        this.size = Math.min(this.full, exp['max' + this.ucwh] || this.full);
        this.minSize = exp.allowSizeReduction ?
		Math.min(exp['min' + this.ucwh], this.full) : this.full;
        if (exp.isImage && exp.useBox) {
            this.size = exp[this.wh];
            this.imgSize = this.full;
        }
        if (this.dim == 'x' && hs2.padToMinWidth) this.minSize = exp.minWidth;
        this.marginMin = hs2['margin' + this.uclt];
        this.scroll = hs2.page['scroll' + this.uclt];
        this.clientSize = hs2.page[this.wh];
    },
    setSize: function(i) {
        var exp = this.exp;
        if (exp.isImage && (exp.useBox || hs2.padToMinWidth)) {
            this.imgSize = i;
            this.size = Math.max(this.size, this.imgSize);
            exp.content.style[this.lt] = this.get('imgPad') + 'px';
        } else
            this.size = i;

        exp.content.style[this.wh] = i + 'px';
        exp.wrapper.style[this.wh] = this.get('wsize') + 'px';
        if (exp.outline) exp.outline.setPosition();
        if (exp.releaseMask) exp.releaseMask.style[this.wh] = i + 'px';
        if (exp.isHtml) {
            var d = exp.scrollerDiv;
            if (this.sizeDiff === undefined)
                this.sizeDiff = exp.innerContent['offset' + this.ucwh] - d['offset' + this.ucwh];
            d.style[this.wh] = (this.size - this.sizeDiff) + 'px';

            if (this.dim == 'x') exp.mediumContent.style.width = 'auto';
            if (exp.body) exp.body.style[this.wh] = 'auto';
        }
        if (this.dim == 'x' && exp.overlayBox) exp.sizeOverlayBox(true);
    },
    setPos: function(i) {
        this.pos = i;
        this.exp.wrapper.style[this.lt] = i + 'px';

        if (this.exp.outline) this.exp.outline.setPosition();

    }
};

hs2.Expander = function(a, params, custom, contentType) {
    if (document.readyState && hs2.ie && !hs2.isReady) {
        hs2.addEventListener(document, 'ready', function() {
            new hs2.Expander(a, params, custom, contentType);
        });
        return;
    }
    this.a = a;
    this.custom = custom;
    this.contentType = contentType || 'image';
    this.isHtml = (contentType == 'html');
    this.isImage = !this.isHtml;

    hs2.continuePreloading = false;
    this.overlays = [];
    hs2.init();
    var key = this.key = hs2.expanders.length;
    // override inline parameters
    for (var i = 0; i < hs2.overrides.length; i++) {
        var name = hs2.overrides[i];
        this[name] = params && typeof params[name] != 'undefined' ?
			params[name] : hs2[name];
    }
    if (!this.src) this.src = a.href;

    // get thumb
    var el = (params && params.thumbnailId) ? hs2.$(params.thumbnailId) : a;
    el = this.thumb = el.getElementsByTagName('img')[0] || el;
    this.thumbsUserSetId = el.id || a.id;

    // check if already open
    for (var i = 0; i < hs2.expanders.length; i++) {
        if (hs2.expanders[i] && hs2.expanders[i].a == a) {
            hs2.expanders[i].focus();
            return false;
        }
    }

    // cancel other
    if (!hs2.allowSimultaneousLoading) for (var i = 0; i < hs2.expanders.length; i++) {
        if (hs2.expanders[i] && hs2.expanders[i].thumb != el && !hs2.expanders[i].onLoadStarted) {
            hs2.expanders[i].cancelLoading();
        }
    }
    hs2.expanders[key] = this;
    if (!hs2.allowMultipleInstances && !hs2.upcoming) {
        if (hs2.expanders[key - 1]) hs2.expanders[key - 1].close();
        if (typeof hs2.focusKey != 'undefined' && hs2.expanders[hs2.focusKey])
            hs2.expanders[hs2.focusKey].close();
    }

    // initiate metrics
    this.el = el;
    this.tpos = hs2.getPosition(el);
    hs2.getPageSize();
    var x = this.x = new hs2.Dimension(this, 'x');
    x.calcThumb();
    var y = this.y = new hs2.Dimension(this, 'y');
    y.calcThumb();
    this.wrapper = hs2.createElement(
		'div', {
		    id: 'highslide-wrapper-' + this.key,
		    className: 'highslide-wrapper ' + this.wrapperClassName
		}, {
		    visibility: 'hidden',
		    position: 'absolute',
		    zIndex: hs2.zIndexCounter += 2
		}, null, true);

    this.wrapper.onmouseover = this.wrapper.onmouseout = hs2.wrapperMouseHandler;
    if (this.contentType == 'image' && this.outlineWhileAnimating == 2)
        this.outlineWhileAnimating = 0;

    // get the outline
    if (!this.outlineType) {
        this[this.contentType + 'Create']();

    } else if (hs2.pendingOutlines[this.outlineType]) {
        this.connectOutline();
        this[this.contentType + 'Create']();

    } else {
        this.showLoading();
        var exp = this;
        new hs2.Outline(this.outlineType,
			function() {
			    exp.connectOutline();
			    exp[exp.contentType + 'Create']();
			}
		);
    }
    return true;
};

hs2.Expander.prototype = {
    error: function(e) {
        //alert ('Line '+ e.lineNumber +': '+ e.message);
        window.location.href = this.src;
    },

    connectOutline: function() {
        var outline = this.outline = hs2.pendingOutlines[this.outlineType];
        outline.exp = this;
        outline.table.style.zIndex = this.wrapper.style.zIndex - 1;
        hs2.pendingOutlines[this.outlineType] = null;
    },

    showLoading: function() {
        if (this.onLoadStarted || this.loading) return;

        this.loading = hs2.loading;
        var exp = this;
        this.loading.onclick = function() {
            exp.cancelLoading();
        };
        var exp = this,
		l = this.x.get('loadingPos') + 'px',
		t = this.y.get('loadingPos') + 'px';
        setTimeout(function() {
            if (exp.loading) hs2.setStyles(exp.loading, { left: l, top: t, zIndex: hs2.zIndexCounter++ })
        }
	, 100);
    },

    imageCreate: function() {
        var exp = this;

        var img = document.createElement('img');
        this.content = img;
        img.onload = function() {
            if (hs2.expanders[exp.key]) exp.contentLoaded();
        };
        if (hs2.blockRightClick) img.oncontextmenu = function() { return false; };
        img.className = 'highslide-image';
        hs2.setStyles(img, {
            visibility: 'hidden',
            display: 'block',
            position: 'absolute',
            maxWidth: '9999px',
            zIndex: 3
        });
        img.title = hs2.lang.restoreTitle;
        if (hs2.safari) hs2.container.appendChild(img);
        if (hs2.ie && hs2.flushImgSize) img.src = null;
        img.src = this.src;

        this.showLoading();
    },

    htmlCreate: function() {

        this.content = hs2.getCacheBinding(this.a);
        if (!this.content)
            this.content = hs2.getNode(this.contentId);
        if (!this.content)
            this.content = hs2.getSelfRendered();
        this.getInline(['maincontent']);
        if (this.maincontent) {
            var body = hs2.getElementByClass(this.content, 'div', 'highslide-body');
            if (body) body.appendChild(this.maincontent);
            this.maincontent.style.display = 'block';
        }

        var innerContent = this.innerContent = this.content;

        if (/(swf|iframe)/.test(this.objectType)) this.setObjContainerSize(innerContent);

        // the content tree
        hs2.container.appendChild(this.wrapper);
        hs2.setStyles(this.wrapper, {
            position: 'static',
            padding: '0 ' + hs2.marginRight + 'px 0 ' + hs2.marginLeft + 'px'
        });
        this.content = hs2.createElement(
    	'div', {
    	    className: 'highslide-html'
    	}, {
    	    position: 'relative',
    	    zIndex: 3,
    	    overflow: 'hidden'
    	},
		this.wrapper
	);
        this.mediumContent = hs2.createElement('div', null, null, this.content, 1);
        this.mediumContent.appendChild(innerContent);

        hs2.setStyles(innerContent, {
            position: 'relative',
            display: 'block',
            direction: hs2.lang.cssDirection || ''
        });
        if (this.width) innerContent.style.width = this.width + 'px';
        if (this.height) hs2.setStyles(innerContent, {
            height: this.height + 'px',
            overflow: 'hidden'
        });
        if (innerContent.offsetWidth < this.minWidth)
            innerContent.style.width = this.minWidth + 'px';



        if (this.objectType == 'ajax' && !hs2.getCacheBinding(this.a)) {
            this.showLoading();
            var ajax = new hs2.Ajax(this.a, innerContent);
            var exp = this;
            ajax.onLoad = function() { if (hs2.expanders[exp.key]) exp.contentLoaded(); };
            ajax.onError = function() { location.href = exp.src; };
            ajax.run();
        }
        else

            if (this.objectType == 'iframe' && this.objectLoadTime == 'before') {
            this.writeExtendedContent();
        }
        else
            this.contentLoaded();
    },

    contentLoaded: function() {
        try {
            if (!this.content) return;
            this.content.onload = null;
            if (this.onLoadStarted) return;
            else this.onLoadStarted = true;

            var x = this.x, y = this.y;

            if (this.loading) {
                hs2.setStyles(this.loading, { top: '-9999px' });
                this.loading = null;
            }
            if (this.isImage) {
                x.full = this.content.width;
                y.full = this.content.height;

                hs2.setStyles(this.content, {
                    width: x.t + 'px',
                    height: y.t + 'px'
                });
                this.wrapper.appendChild(this.content);
                hs2.container.appendChild(this.wrapper);
            } else if (this.htmlGetSize) this.htmlGetSize();

            x.calcBorders();
            y.calcBorders();

            hs2.setStyles(this.wrapper, {
                left: (x.tpos + x.tb - x.cb) + 'px',
                top: (y.tpos + x.tb - y.cb) + 'px'
            });
            this.getOverlays();

            var ratio = x.full / y.full;

            x.calcExpanded();
            this.justify(x);

            y.calcExpanded();
            this.justify(y);
            if (this.isHtml) this.htmlSizeOperations();
            if (this.overlayBox) this.sizeOverlayBox(0, 1);

            if (this.allowSizeReduction) {
                if (this.isImage)
                    this.correctRatio(ratio);
                else this.fitOverlayBox();
                if (this.isImage && this.x.full > (this.x.imgSize || this.x.size)) {
                    this.createFullExpand();
                    if (this.overlays.length == 1) this.sizeOverlayBox();
                }
            }
            this.show();

        } catch (e) {
            this.error(e);
        }
    },


    setObjContainerSize: function(parent, auto) {
        var c = hs2.getElementByClass(parent, 'DIV', 'highslide-body');
        if (/(iframe|swf)/.test(this.objectType)) {
            if (this.objectWidth) c.style.width = this.objectWidth + 'px';
            if (this.objectHeight) c.style.height = this.objectHeight + 'px';
        }
    },

    writeExtendedContent: function() {
        if (this.hasExtendedContent) return;
        var exp = this;
        this.body = hs2.getElementByClass(this.innerContent, 'DIV', 'highslide-body');
        if (this.objectType == 'iframe') {
            this.showLoading();
            var ruler = hs2.clearing.cloneNode(1);
            this.body.appendChild(ruler);
            this.newWidth = this.innerContent.offsetWidth;
            if (!this.objectWidth) this.objectWidth = ruler.offsetWidth;
            var hDiff = this.innerContent.offsetHeight - this.body.offsetHeight,
			h = this.objectHeight || hs2.page.height - hDiff - hs2.marginTop - hs2.marginBottom,
			onload = this.objectLoadTime == 'before' ?
				' onload="if (hs2.expanders[' + this.key + ']) hs2.expanders[' + this.key + '].contentLoaded()" ' : '';

            this.body.innerHTML += '<iframe name="hs2' + (new Date()).getTime() + '" frameborder="0" key="' + this.key + '" '
			+ ' allowtransparency="true" style="width:' + this.objectWidth + 'px; height:' + h + 'px" '
			+ onload + ' src="' + this.src + '"></iframe>';
            this.ruler = this.body.getElementsByTagName('div')[0];
            this.iframe = this.body.getElementsByTagName('iframe')[0];

            if (this.objectLoadTime == 'after') this.correctIframeSize();

        }
        if (this.objectType == 'swf') {
            this.body.id = this.body.id || 'hs2-flash-id-' + this.key;
            var a = this.swfOptions;
            if (!a.params) a.params = {};
            if (typeof a.params.wmode == 'undefined') a.params.wmode = 'transparent';
            if (swfobject) swfobject.embedSWF(this.src, this.body.id, this.objectWidth, this.objectHeight,
			a.version || '7', a.expressInstallSwfurl, a.flashvars, a.params, a.attributes);
        }
        this.hasExtendedContent = true;
    },
    htmlGetSize: function() {
        if (this.iframe && !this.objectHeight) { // loadtime before		
            this.iframe.style.height = this.body.style.height = this.getIframePageHeight() + 'px';
        }
        this.innerContent.appendChild(hs2.clearing);
        if (!this.x.full) this.x.full = this.innerContent.offsetWidth;
        this.y.full = this.innerContent.offsetHeight;
        this.innerContent.removeChild(hs2.clearing);
        if (hs2.ie && this.newHeight > parseInt(this.innerContent.currentStyle.height)) { // ie css bug
            this.newHeight = parseInt(this.innerContent.currentStyle.height);
        }
        hs2.setStyles(this.wrapper, { position: 'absolute', padding: '0' });
        hs2.setStyles(this.content, { width: this.x.t + 'px', height: this.y.t + 'px' });
    },

    getIframePageHeight: function() {
        var h;
        try {
            var doc = this.iframe.contentDocument || this.iframe.contentWindow.document;
            var clearing = doc.createElement('div');
            clearing.style.clear = 'both';
            doc.body.appendChild(clearing);
            h = clearing.offsetTop;
            if (hs2.ie) h += parseInt(doc.body.currentStyle.marginTop)
			+ parseInt(doc.body.currentStyle.marginBottom) - 1;
        } catch (e) { // other domain
            h = 300;
        }
        return h;
    },
    correctIframeSize: function() {
        var wDiff = this.innerContent.offsetWidth - this.ruler.offsetWidth;
        hs2.discardElement(this.ruler);
        if (wDiff < 0) wDiff = 0;

        var hDiff = this.innerContent.offsetHeight - this.iframe.offsetHeight;
        hs2.setStyles(this.iframe, {
            width: Math.abs(this.x.size - wDiff) + 'px',
            height: Math.abs(this.y.size - hDiff) + 'px'
        });
        hs2.setStyles(this.body, {
            width: this.iframe.style.width,
            height: this.iframe.style.height
        });

        this.scrollingContent = this.iframe;
        this.scrollerDiv = this.scrollingContent;
    },
    htmlSizeOperations: function() {

        this.setObjContainerSize(this.innerContent);


        if (this.objectType == 'swf' && this.objectLoadTime == 'before') this.writeExtendedContent();

        // handle minimum size
        if (this.x.size < this.x.full && !this.allowWidthReduction) this.x.size = this.x.full;
        if (this.y.size < this.y.full && !this.allowHeightReduction) this.y.size = this.y.full;
        this.scrollerDiv = this.innerContent;
        hs2.setStyles(this.mediumContent, {
            position: 'relative',
            width: this.x.size + 'px'
        });
        hs2.setStyles(this.innerContent, {
            border: 'none',
            width: 'auto',
            height: 'auto'
        });
        var node = hs2.getElementByClass(this.innerContent, 'DIV', 'highslide-body');
        if (node && !/(iframe|swf)/.test(this.objectType)) {
            var cNode = node; // wrap to get true size
            node = hs2.createElement(cNode.nodeName, null, { overflow: 'hidden' }, null, true);
            cNode.parentNode.insertBefore(node, cNode);
            node.appendChild(hs2.clearing); // IE6
            node.appendChild(cNode);

            var wDiff = this.innerContent.offsetWidth - node.offsetWidth;
            var hDiff = this.innerContent.offsetHeight - node.offsetHeight;
            node.removeChild(hs2.clearing);

            var kdeBugCorr = hs2.safari || navigator.vendor == 'KDE' ? 1 : 0; // KDE repainting bug
            hs2.setStyles(node, {
                width: (this.x.size - wDiff - kdeBugCorr) + 'px',
                height: (this.y.size - hDiff) + 'px',
                overflow: 'auto',
                position: 'relative'
            }
    	);
            if (kdeBugCorr && cNode.offsetHeight > node.offsetHeight) {
                node.style.width = (parseInt(node.style.width) + kdeBugCorr) + 'px';
            }
            this.scrollingContent = node;
            this.scrollerDiv = this.scrollingContent;
        }
        if (this.iframe && this.objectLoadTime == 'before') this.correctIframeSize();
        if (!this.scrollingContent && this.y.size < this.mediumContent.offsetHeight) this.scrollerDiv = this.content;

        if (this.scrollerDiv == this.content && !this.allowWidthReduction && !/(iframe|swf)/.test(this.objectType)) {
            this.x.size += 17; // room for scrollbars
        }
        if (this.scrollerDiv && this.scrollerDiv.offsetHeight > this.scrollerDiv.parentNode.offsetHeight) {
            setTimeout("try { hs2.expanders[" + this.key + "].scrollerDiv.style.overflow = 'auto'; } catch(e) {}",
			 hs2.expandDuration);
        }
    },

    justify: function(p, moveOnly) {
        var tgtArr, tgt = p.target, dim = p == this.x ? 'x' : 'y';

        var hasMovedMin = false;

        var allowReduce = p.exp.allowSizeReduction;
        p.pos = Math.round(p.pos - ((p.get('wsize') - p.t) / 2));
        if (p.pos < p.scroll + p.marginMin) {
            p.pos = p.scroll + p.marginMin;
            hasMovedMin = true;
        }
        if (!moveOnly && p.size < p.minSize) {
            p.size = p.minSize;
            allowReduce = false;
        }
        if (p.pos + p.get('wsize') > p.scroll + p.clientSize - p.marginMax) {
            if (!moveOnly && hasMovedMin && allowReduce) {
                p.size = p.get(dim == 'y' ? 'fitsize' : 'maxsize');
            } else if (p.get('wsize') < p.get('fitsize')) {
                p.pos = p.scroll + p.clientSize - p.marginMax - p.get('wsize');
            } else { // image larger than viewport
                p.pos = p.scroll + p.marginMin;
                if (!moveOnly && allowReduce) p.size = p.get(dim == 'y' ? 'fitsize' : 'maxsize');
            }
        }

        if (!moveOnly && p.size < p.minSize) {
            p.size = p.minSize;
            allowReduce = false;
        }



        if (p.pos < p.marginMin) {
            var tmpMin = p.pos;
            p.pos = p.marginMin;

            if (allowReduce && !moveOnly) p.size = p.size - (p.pos - tmpMin);

        }
    },

    correctRatio: function(ratio) {
        var x = this.x,
		y = this.y,
		changed = false,
		xSize = Math.min(x.full, x.size),
		ySize = Math.min(y.full, y.size),
		useBox = (this.useBox || hs2.padToMinWidth);

        if (xSize / ySize > ratio) { // width greater
            xSize = ySize * ratio;
            if (xSize < x.minSize) { // below minWidth
                xSize = x.minSize;
                ySize = xSize / ratio;
            }
            changed = true;

        } else if (xSize / ySize < ratio) { // height greater
            ySize = xSize / ratio;
            changed = true;
        }

        if (hs2.padToMinWidth && x.full < x.minSize) {
            x.imgSize = x.full;
            y.size = y.imgSize = y.full;
        } else if (this.useBox) {
            x.imgSize = xSize;
            y.imgSize = ySize;
        } else {
            x.size = xSize;
            y.size = ySize;
        }
        this.fitOverlayBox(useBox ? null : ratio);
        if (useBox && y.size < y.imgSize) {
            y.imgSize = y.size;
            x.imgSize = y.size * ratio;
        }
        if (changed || useBox) {
            x.pos = x.tpos - x.cb + x.tb;
            x.minSize = x.size;
            this.justify(x, true);

            y.pos = y.tpos - y.cb + y.tb;
            y.minSize = y.size;
            this.justify(y, true);
            if (this.overlayBox) this.sizeOverlayBox();
        }
    },
    fitOverlayBox: function(ratio) {
        var x = this.x, y = this.y;
        if (this.overlayBox) {
            while (y.size > this.minHeight && x.size > this.minWidth
				&& y.get('wsize') > y.get('fitsize')) {
                y.size -= 10;
                if (ratio) x.size = y.size * ratio;
                this.sizeOverlayBox(0, 1);
            }
        }
    },

    show: function() {
        var x = this.x, y = this.y;
        this.doShowHide('hidden');

        // Apply size change
        this.changeSize(
		1, {
		    wrapper: {
		        width: x.get('wsize'),
		        height: y.get('wsize'),
		        left: x.pos,
		        top: y.pos
		    },
		    content: {
		        left: x.p1 + x.get('imgPad'),
		        top: y.p1 + y.get('imgPad'),
		        width: x.imgSize || x.size,
		        height: y.imgSize || y.size
		    }
		},
		hs2.expandDuration
	);
    },

    changeSize: function(up, to, dur) {

        if (this.outline && !this.outlineWhileAnimating) {
            if (up) this.outline.setPosition();
            else this.outline.destroy(
				(this.isHtml && this.preserveContent));
        }


        if (!up) this.destroyOverlays();

        var exp = this,
		x = exp.x,
		y = exp.y,
		easing = this.easing;
        if (!up) easing = this.easingClose || easing;
        var after = up ?
		function() {

		    if (exp.outline) exp.outline.table.style.visibility = "visible";
		    setTimeout(function() {
		        exp.afterExpand();
		    }, 50);
		} :
		function() {
		    exp.afterClose();
		};
        if (up) hs2.setStyles(this.wrapper, {
            width: x.t + 'px',
            height: y.t + 'px'
        });
        if (up && this.isHtml) {
            hs2.setStyles(this.wrapper, {
                left: (x.tpos - x.cb + x.tb) + 'px',
                top: (y.tpos - y.cb + y.tb) + 'px'
            });
        }
        if (this.fadeInOut) {
            hs2.setStyles(this.wrapper, { opacity: up ? 0 : 1 });
            hs2.extend(to.wrapper, { opacity: up });
        }
        hs2.animate(this.wrapper, to.wrapper, {
            duration: dur,
            easing: easing,
            step: function(val, args) {
                if (exp.outline && exp.outlineWhileAnimating && args.prop == 'top') {
                    var fac = up ? args.pos : 1 - args.pos;
                    var pos = {
                        w: x.t + (x.get('wsize') - x.t) * fac,
                        h: y.t + (y.get('wsize') - y.t) * fac,
                        x: x.tpos + (x.pos - x.tpos) * fac,
                        y: y.tpos + (y.pos - y.tpos) * fac
                    };
                    exp.outline.setPosition(pos, 0, 1);
                }
                if (exp.isHtml) {
                    if (args.prop == 'left')
                        exp.mediumContent.style.left = (x.pos - val) + 'px';
                    if (args.prop == 'top')
                        exp.mediumContent.style.top = (y.pos - val) + 'px';
                }
            }
        });
        hs2.animate(this.content, to.content, dur, easing, after);
        if (up) {
            this.wrapper.style.visibility = 'visible';
            this.content.style.visibility = 'visible';
            if (this.isHtml) this.innerContent.style.visibility = 'visible';
            this.a.className += ' highslide-active-anchor';
        }
    },




    afterExpand: function() {
        this.isExpanded = true;
        this.focus();

        if (this.isHtml && this.objectLoadTime == 'after') this.writeExtendedContent();
        if (this.iframe) {
            try {
                var exp = this,
				doc = this.iframe.contentDocument || this.iframe.contentWindow.document;
                hs2.addEventListener(doc, 'mousedown', function() {
                    if (hs2.focusKey != exp.key) exp.focus();
                });
            } catch (e) { }
            if (hs2.ie && typeof this.isClosing != 'boolean') // first open 
                this.iframe.style.width = (this.objectWidth - 1) + 'px'; // hasLayout
        }
        if (hs2.upcoming && hs2.upcoming == this.a) hs2.upcoming = null;
        this.prepareNextOutline();
        var p = hs2.page, mX = hs2.mouse.x + p.scrollLeft, mY = hs2.mouse.y + p.scrollTop;
        this.mouseIsOver = this.x.pos < mX && mX < this.x.pos + this.x.get('wsize')
		&& this.y.pos < mY && mY < this.y.pos + this.y.get('wsize');
        if (this.overlayBox) this.showOverlays();

    },


    prepareNextOutline: function() {
        var key = this.key;
        var outlineType = this.outlineType;
        new hs2.Outline(outlineType,
		function() { try { hs2.expanders[key].preloadNext(); } catch (e) { } });
    },


    preloadNext: function() {
        var next = this.getAdjacentAnchor(1);
        if (next && next.onclick.toString().match(/hs2\.expand/))
            var img = hs2.createElement('img', { src: hs2.getSrc(next) });
    },


    getAdjacentAnchor: function(op) {
        var current = this.getAnchorIndex(), as = hs2.anchors.groups[this.slideshowGroup || 'none'];

        /*< ? if ($cfg->slideshow) : ?>s*/
        if (!as[current + op] && this.slideshow && this.slideshow.repeat) {
            if (op == 1) return as[0];
            else if (op == -1) return as[as.length - 1];
        }
        /*< ? endif ?>s*/
        return as[current + op] || null;
    },

    getAnchorIndex: function() {
        var arr = hs2.getAnchors().groups[this.slideshowGroup || 'none'];
        if (arr) for (var i = 0; i < arr.length; i++) {
            if (arr[i] == this.a) return i;
        }
        return null;
    },


    cancelLoading: function() {
        hs2.discardElement(this.wrapper);
        hs2.expanders[this.key] = null;
        if (this.loading) hs2.loading.style.left = '-9999px';
    },

    writeCredits: function() {
        this.credits = hs2.createElement('a', {
            href: hs2.creditsHref,
            target: hs2.creditsTarget,
            className: 'highslide-credits',
            innerHTML: hs2.lang.creditsText,
            title: hs2.lang.creditsTitle
        });
        this.createOverlay({
            overlayId: this.credits,
            position: this.creditsPosition || 'top left'
        });
    },

    getInline: function(types, addOverlay) {
        for (var i = 0; i < types.length; i++) {
            var type = types[i], s = null;
            if (!this[type + 'Id'] && this.thumbsUserSetId)
                this[type + 'Id'] = type + '-for-' + this.thumbsUserSetId;
            if (this[type + 'Id']) this[type] = hs2.getNode(this[type + 'Id']);
            if (!this[type] && !this[type + 'Text'] && this[type + 'Eval']) try {
                s = eval(this[type + 'Eval']);
            } catch (e) { }
            if (!this[type] && this[type + 'Text']) {
                s = this[type + 'Text'];
            }
            if (!this[type] && !s) {
                var next = this.a.nextSibling;
                while (next && !hs2.isHsAnchor(next)) {
                    if ((new RegExp('highslide-' + type)).test(next.className || null)) {
                        this[type] = next.cloneNode(1);
                        break;
                    }
                    next = next.nextSibling;
                }
            }

            if (!this[type] && s) this[type] = hs2.createElement('div',
				{ className: 'highslide-' + type, innerHTML: s });

            if (addOverlay && this[type]) {
                var o = { position: (type == 'heading') ? 'above' : 'below' };
                for (var x in this[type + 'Overlay']) o[x] = this[type + 'Overlay'][x];
                o.overlayId = this[type];
                this.createOverlay(o);
            }
        }
    },


    // on end move and resize
    doShowHide: function(visibility) {
        if (hs2.hideSelects) this.showHideElements('SELECT', visibility);
        if (hs2.hideIframes) this.showHideElements('IFRAME', visibility);
        if (hs2.geckoMac) this.showHideElements('*', visibility);
    },
    showHideElements: function(tagName, visibility) {
        var els = document.getElementsByTagName(tagName);
        var prop = tagName == '*' ? 'overflow' : 'visibility';
        for (var i = 0; i < els.length; i++) {
            if (prop == 'visibility' || (document.defaultView.getComputedStyle(
				els[i], "").getPropertyValue('overflow') == 'auto'
				|| els[i].getAttribute('hidden-by') != null)) {
                var hiddenBy = els[i].getAttribute('hidden-by');
                if (visibility == 'visible' && hiddenBy) {
                    hiddenBy = hiddenBy.replace('[' + this.key + ']', '');
                    els[i].setAttribute('hidden-by', hiddenBy);
                    if (!hiddenBy) els[i].style[prop] = els[i].origProp;
                } else if (visibility == 'hidden') { // hide if behind
                    var elPos = hs2.getPosition(els[i]);
                    elPos.w = els[i].offsetWidth;
                    elPos.h = els[i].offsetHeight;


                    var clearsX = (elPos.x + elPos.w < this.x.get('opos')
						|| elPos.x > this.x.get('opos') + this.x.get('osize'));
                    var clearsY = (elPos.y + elPos.h < this.y.get('opos')
						|| elPos.y > this.y.get('opos') + this.y.get('osize'));
                    var wrapperKey = hs2.getWrapperKey(els[i]);
                    if (!clearsX && !clearsY && wrapperKey != this.key) { // element falls behind image
                        if (!hiddenBy) {
                            els[i].setAttribute('hidden-by', '[' + this.key + ']');
                            els[i].origProp = els[i].style[prop];
                            els[i].style[prop] = 'hidden';

                        } else if (hiddenBy.indexOf('[' + this.key + ']') == -1) {
                            els[i].setAttribute('hidden-by', hiddenBy + '[' + this.key + ']');
                        }
                    } else if ((hiddenBy == '[' + this.key + ']' || hs2.focusKey == wrapperKey)
						&& wrapperKey != this.key) { // on move
                        els[i].setAttribute('hidden-by', '');
                        els[i].style[prop] = els[i].origProp || '';
                    } else if (hiddenBy && hiddenBy.indexOf('[' + this.key + ']') > -1) {
                        els[i].setAttribute('hidden-by', hiddenBy.replace('[' + this.key + ']', ''));
                    }

                }
            }
        }
    },

    focus: function() {
        this.wrapper.style.zIndex = hs2.zIndexCounter += 2;
        // blur others
        for (var i = 0; i < hs2.expanders.length; i++) {
            if (hs2.expanders[i] && i == hs2.focusKey) {
                var blurExp = hs2.expanders[i];
                blurExp.content.className += ' highslide-' + blurExp.contentType + '-blur';
                if (blurExp.isImage) {
                    blurExp.content.style.cursor = hs2.ie ? 'hand' : 'pointer';
                    blurExp.content.title = hs2.lang.focusTitle;
                }
            }
        }

        // focus this
        if (this.outline) this.outline.table.style.zIndex
		= this.wrapper.style.zIndex - 1;
        this.content.className = 'highslide-' + this.contentType;
        if (this.isImage) {
            this.content.title = hs2.lang.restoreTitle;

            if (hs2.restoreCursor) {
                hs2.styleRestoreCursor = window.opera ? 'pointer' : 'url(' + hs2.graphicsDir + hs2.restoreCursor + '), pointer';
                if (hs2.ie && hs2.uaVersion < 6) hs2.styleRestoreCursor = 'hand';
                this.content.style.cursor = hs2.styleRestoreCursor;
            }
        }
        hs2.focusKey = this.key;
        hs2.addEventListener(document, window.opera ? 'keypress' : 'keydown', hs2.keyHandler);
    },
    moveTo: function(x, y) {
        this.x.setPos(x);
        this.y.setPos(y);
    },
    resize: function(e) {
        var w, h, r = e.width / e.height;
        w = Math.max(e.width + e.dX, Math.min(this.minWidth, this.x.full));
        if (this.isImage && Math.abs(w - this.x.full) < 12) w = this.x.full;
        h = this.isHtml ? e.height + e.dY : w / r;
        if (h < Math.min(this.minHeight, this.y.full)) {
            h = Math.min(this.minHeight, this.y.full);
            if (this.isImage) w = h * r;
        }
        this.resizeTo(w, h);
    },
    resizeTo: function(w, h) {
        this.y.setSize(h);
        this.x.setSize(w);
    },

    close: function() {
        if (this.isClosing || !this.isExpanded) return;
        this.isClosing = true;

        hs2.removeEventListener(document, window.opera ? 'keypress' : 'keydown', hs2.keyHandler);

        try {
            if (this.isHtml) this.htmlPrepareClose();
            this.content.style.cursor = 'default';
            this.changeSize(
			0, {
			    wrapper: {
			        width: this.x.t,
			        height: this.y.t,
			        left: this.x.tpos - this.x.cb + this.x.tb,
			        top: this.y.tpos - this.y.cb + this.y.tb
			    },
			    content: {
			        left: 0,
			        top: 0,
			        width: this.x.t,
			        height: this.y.t
			    }
			}, hs2.restoreDuration
		);
        } catch (e) { this.afterClose(); }
    },

    htmlPrepareClose: function() {
        if (hs2.geckoMac) { // bad redraws
            if (!hs2.mask) hs2.mask = hs2.createElement('div', null,
			{ position: 'absolute' }, hs2.container);
            hs2.setStyles(hs2.mask, { width: this.x.size + 'px', height: this.y.size + 'px',
                left: this.x.pos + 'px', top: this.y.pos + 'px', display: 'block'
            });
        }
        if (this.objectType == 'swf') try { hs2.$(this.body.id).StopPlay(); } catch (e) { }

        if (this.objectLoadTime == 'after' && !this.preserveContent) this.destroyObject();
        if (this.scrollerDiv && this.scrollerDiv != this.scrollingContent)
            this.scrollerDiv.style.overflow = 'hidden';
    },

    destroyObject: function() {
        if (hs2.ie && this.iframe)
            try { this.iframe.contentWindow.document.body.innerHTML = ''; } catch (e) { }
        if (this.objectType == 'swf') swfobject.removeSWF(this.body.id);
        this.body.innerHTML = '';
    },

    sleep: function() {
        if (this.outline) this.outline.table.style.display = 'none';
        this.releaseMask = null;
        this.wrapper.style.display = 'none';
        hs2.push(hs2.sleeping, this);
    },

    awake: function() {
        try {

            hs2.expanders[this.key] = this;

            if (!hs2.allowMultipleInstances && hs2.focusKey != this.key) {
                try { hs2.expanders[hs2.focusKey].close(); } catch (e) { }
            }

            var z = hs2.zIndexCounter++, stl = { display: '', zIndex: z };
            hs2.setStyles(this.wrapper, stl);
            this.isClosing = false;

            var o = this.outline || 0;
            if (o) {
                if (!this.outlineWhileAnimating) stl.visibility = 'hidden';
                hs2.setStyles(o.table, stl);
            }

            this.show();
        } catch (e) { }


    },

    createOverlay: function(o) {
        var el = o.overlayId;
        if (typeof el == 'string') el = hs2.getNode(el);
        if (o.html) el = hs2.createElement('div', { innerHTML: o.html });
        if (!el || typeof el == 'string') return;
        el.style.display = 'block';
        this.genOverlayBox();
        var width = o.width && /^[0-9]+(px|%)$/.test(o.width) ? o.width : 'auto';
        if (/^(left|right)panel$/.test(o.position) && !/^[0-9]+px$/.test(o.width)) width = '200px';
        var overlay = hs2.createElement(
		'div', {
		    id: 'hsId' + hs2.idCounter++,
		    hsId: o.hsId
		}, {
		    position: 'absolute',
		    visibility: 'hidden',
		    width: width,
		    direction: hs2.lang.cssDirection || '',
		    opacity: 0
		}, this.overlayBox,
		true
	);

        overlay.appendChild(el);
        hs2.extend(overlay, {
            opacity: 1,
            offsetX: 0,
            offsetY: 0,
            dur: (o.fade === 0 || o.fade === false || (o.fade == 2 && hs2.ie)) ? 0 : 250
        });
        hs2.extend(overlay, o);

        if (this.gotOverlays) {
            this.positionOverlay(overlay);
            if (!overlay.hideOnMouseOut || this.mouseIsOver)
                hs2.animate(overlay, { opacity: overlay.opacity }, overlay.dur);
        }
        hs2.push(this.overlays, hs2.idCounter - 1);
    },
    positionOverlay: function(overlay) {
        var p = overlay.position || 'middle center',
		offX = overlay.offsetX,
		offY = overlay.offsetY;
        if (overlay.parentNode != this.overlayBox) this.overlayBox.appendChild(overlay);
        if (/left$/.test(p)) overlay.style.left = offX + 'px';

        if (/center$/.test(p)) hs2.setStyles(overlay, {
            left: '50%',
            marginLeft: (offX - Math.round(overlay.offsetWidth / 2)) + 'px'
        });

        if (/right$/.test(p)) overlay.style.right = -offX + 'px';

        if (/^leftpanel$/.test(p)) {
            hs2.setStyles(overlay, {
                right: '100%',
                marginRight: this.x.cb + 'px',
                top: -this.y.cb + 'px',
                bottom: -this.y.cb + 'px',
                overflow: 'auto'
            });
            this.x.p1 = overlay.offsetWidth;

        } else if (/^rightpanel$/.test(p)) {
            hs2.setStyles(overlay, {
                left: '100%',
                marginLeft: this.x.cb + 'px',
                top: -this.y.cb + 'px',
                bottom: -this.y.cb + 'px',
                overflow: 'auto'
            });
            this.x.p2 = overlay.offsetWidth;
        }

        if (/^top/.test(p)) overlay.style.top = offY + 'px';
        if (/^middle/.test(p)) hs2.setStyles(overlay, {
            top: '50%',
            marginTop: (offY - Math.round(overlay.offsetHeight / 2)) + 'px'
        });
        if (/^bottom/.test(p)) overlay.style.bottom = -offY + 'px';
        if (/^above$/.test(p)) {
            hs2.setStyles(overlay, {
                left: (-this.x.p1 - this.x.cb) + 'px',
                right: (-this.x.p2 - this.x.cb) + 'px',
                bottom: '100%',
                marginBottom: this.y.cb + 'px',
                width: 'auto'
            });
            this.y.p1 = overlay.offsetHeight;

        } else if (/^below$/.test(p)) {
            hs2.setStyles(overlay, {
                position: 'relative',
                left: (-this.x.p1 - this.x.cb) + 'px',
                right: (-this.x.p2 - this.x.cb) + 'px',
                top: '100%',
                marginTop: this.y.cb + 'px',
                width: 'auto'
            });
            this.y.p2 = overlay.offsetHeight;
            overlay.style.position = 'absolute';
        }
    },

    getOverlays: function() {
        this.getInline(['heading', 'caption'], true);
        if (this.heading && this.dragByHeading) this.heading.className += ' highslide-move';
        if (hs2.showCredits) this.writeCredits();
        for (var i = 0; i < hs2.overlays.length; i++) {
            var o = hs2.overlays[i], tId = o.thumbnailId, sg = o.slideshowGroup;
            if ((!tId && !sg) || (tId && tId == this.thumbsUserSetId)
				|| (sg && sg === this.slideshowGroup)) {
                if (this.isImage || (this.isHtml && o.useOnHtml))
                    this.createOverlay(o);
            }
        }
        var os = [];
        for (var i = 0; i < this.overlays.length; i++) {
            var o = hs2.$('hsId' + this.overlays[i]);
            if (/panel$/.test(o.position)) this.positionOverlay(o);
            else hs2.push(os, o);
        }
        for (var i = 0; i < os.length; i++) this.positionOverlay(os[i]);
        this.gotOverlays = true;
    },
    genOverlayBox: function() {
        if (!this.overlayBox) this.overlayBox = hs2.createElement(
		'div', {
		    className: this.wrapperClassName
		}, {
		    position: 'absolute',
		    width: (this.x.size || (this.useBox ? this.width : null)
				|| this.x.full) + 'px',
		    height: (this.y.size || this.y.full) + 'px',
		    visibility: 'hidden',
		    overflow: 'hidden',
		    zIndex: hs2.ie ? 4 : null
		},
		hs2.container,
		true
	);
    },
    sizeOverlayBox: function(doWrapper, doPanels) {
        var overlayBox = this.overlayBox,
		x = this.x,
		y = this.y;
        hs2.setStyles(overlayBox, {
            width: x.size + 'px',
            height: y.size + 'px'
        });
        if (doWrapper || doPanels) {
            for (var i = 0; i < this.overlays.length; i++) {
                var o = hs2.$('hsId' + this.overlays[i]);
                var ie6 = (hs2.ieLt7 || document.compatMode == 'BackCompat');
                if (o && /^(above|below)$/.test(o.position)) {
                    if (ie6) {
                        o.style.width = (overlayBox.offsetWidth + 2 * x.cb
						+ x.p1 + x.p2) + 'px';
                    }
                    y[o.position == 'above' ? 'p1' : 'p2'] = o.offsetHeight;
                }
                if (o && ie6 && /^(left|right)panel$/.test(o.position)) {
                    o.style.height = (overlayBox.offsetHeight + 2 * y.cb) + 'px';
                }
            }
        }
        if (doWrapper) {
            hs2.setStyles(this.content, {
                top: y.p1 + 'px'
            });
            hs2.setStyles(overlayBox, {
                top: (y.p1 + y.cb) + 'px'
            });
        }
    },

    showOverlays: function() {
        var b = this.overlayBox;
        b.className = '';
        hs2.setStyles(b, {
            top: (this.y.p1 + this.y.cb) + 'px',
            left: (this.x.p1 + this.x.cb) + 'px',
            overflow: 'visible'
        });
        if (hs2.safari) b.style.visibility = 'visible';
        this.wrapper.appendChild(b);
        for (var i = 0; i < this.overlays.length; i++) {
            var o = hs2.$('hsId' + this.overlays[i]);
            o.style.zIndex = 4;
            if (!o.hideOnMouseOut || this.mouseIsOver) {
                o.style.visibility = 'visible';
                hs2.setStyles(o, { visibility: 'visible', display: '' });
                hs2.animate(o, { opacity: o.opacity }, o.dur);
            }
        }
    },

    destroyOverlays: function() {
        if (!this.overlays.length) return;
        if (this.isHtml && this.preserveContent) {
            this.overlayBox.style.top = '-9999px';
            hs2.container.appendChild(this.overlayBox);
        } else
            hs2.discardElement(this.overlayBox);
    },



    createFullExpand: function() {
        this.fullExpandLabel = hs2.createElement(
		'a', {
		    href: 'javascript:hs2.expanders[' + this.key + '].doFullExpand();',
		    title: hs2.lang.fullExpandTitle,
		    className: 'highslide-full-expand'
		}
	);

        this.createOverlay({
            overlayId: this.fullExpandLabel,
            position: hs2.fullExpandPosition,
            hideOnMouseOut: true,
            opacity: hs2.fullExpandOpacity
        });
    },

    doFullExpand: function() {
        try {
            if (this.fullExpandLabel) hs2.discardElement(this.fullExpandLabel);

            this.focus();
            var xSize = this.x.size;
            this.resizeTo(this.x.full, this.y.full);

            var xpos = this.x.pos - (this.x.size - xSize) / 2;
            if (xpos < hs2.marginLeft) xpos = hs2.marginLeft;

            this.moveTo(xpos, this.y.pos);
            this.doShowHide('hidden');

        } catch (e) {
            this.error(e);
        }
    },


    afterClose: function() {
        this.a.className = this.a.className.replace('highslide-active-anchor', '');

        this.doShowHide('visible');

        if (this.isHtml && this.preserveContent) {
            this.sleep();
        } else {
            if (this.outline && this.outlineWhileAnimating) this.outline.destroy();

            hs2.discardElement(this.wrapper);
        }
        if (hs2.mask) hs2.mask.style.display = 'none';

        hs2.expanders[this.key] = null;
        hs2.reOrder();
    }

};


// hs2.Ajax object prototype
hs2.Ajax = function(a, content, pre) {
    this.a = a;
    this.content = content;
    this.pre = pre;
};

hs2.Ajax.prototype = {
    run: function() {
        if (!this.src) this.src = hs2.getSrc(this.a);
        if (this.src.match('#')) {
            var arr = this.src.split('#');
            this.src = arr[0];
            this.id = arr[1];
        }
        if (hs2.cachedGets[this.src]) {
            this.cachedGet = hs2.cachedGets[this.src];
            if (this.id) this.getElementContent();
            else this.loadHTML();
            return;
        }
        try { this.xmlHttp = new XMLHttpRequest(); }
        catch (e) {
            try { this.xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); }
            catch (e) {
                try { this.xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); }
                catch (e) { this.onError(); }
            }
        }
        var pThis = this;
        this.xmlHttp.onreadystatechange = function() {
            if (pThis.xmlHttp.readyState == 4) {
                if (pThis.id) pThis.getElementContent();
                else pThis.loadHTML();
            }
        };
        var src = this.src;
        if (hs2.forceAjaxReload)
            src = src.replace(/$/, (/\?/.test(src) ? '&' : '?') + 'dummy=' + (new Date()).getTime());
        this.xmlHttp.open('GET', src, true);
        this.xmlHttp.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
        this.xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
        this.xmlHttp.send(null);
    },

    getElementContent: function() {
        hs2.init();
        var attribs = window.opera || hs2.ie6SSL ? { src: 'about:blank'} : null;

        this.iframe = hs2.createElement('iframe', attribs,
		{ position: 'absolute', top: '-9999px' }, hs2.container);

        this.loadHTML();
    },

    loadHTML: function() {
        var s = this.cachedGet || this.xmlHttp.responseText;
        if (this.pre) hs2.cachedGets[this.src] = s;
        if (!hs2.ie || hs2.uaVersion >= 5.5) {
            s = s.replace(/\s/g, ' ').replace(
			new RegExp('<link[^>]*>', 'gi'), '').replace(
			new RegExp('<script[^>]*>.*?</script>', 'gi'), '');

            if (this.iframe) {
                var doc = this.iframe.contentDocument;
                if (!doc && this.iframe.contentWindow) doc = this.iframe.contentWindow.document;
                if (!doc) { // Opera
                    var pThis = this;
                    setTimeout(function() { pThis.loadHTML(); }, 25);
                    return;
                }
                doc.open();
                doc.write(s);
                doc.close();
                try { s = doc.getElementById(this.id).innerHTML; } catch (e) {
                    try { s = this.iframe.document.getElementById(this.id).innerHTML; } catch (e) { } // opera
                }
                hs2.discardElement(this.iframe);
            } else {
                s = s.replace(new RegExp('^.*?<body[^>]*>(.*?)</body>.*?$', 'i'), '$1');
            }
        }
        hs2.getElementByClass(this.content, 'DIV', 'highslide-body').innerHTML = s;
        this.onLoad();
        for (var x in this) this[x] = null;
    }
};
if (hs2.ie) {
    (function() {
        try {
            document.documentElement.doScroll('left');
        } catch (e) {
            setTimeout(arguments.callee, 50);
            return;
        }
        hs2.ready();
    })();
}
hs2.addEventListener(document, 'DOMContentLoaded', hs2.ready);
hs2.addEventListener(window, 'load', hs2.ready);
hs2.langDefaults = hs2.lang;
// history
var HsExpander = hs2.Expander;

// set handlers
hs2.addEventListener(window, 'load', function() {
    if (hs2.expandCursor) {
        var sel = '.highslide img',
			dec = 'cursor: url(' + hs2.graphicsDir + hs2.expandCursor + '), pointer !important;';

        var style = hs2.createElement('style', { type: 'text/css' }, null,
			document.getElementsByTagName('HEAD')[0]);

        if (!hs2.ie) {
            style.appendChild(document.createTextNode(sel + " {" + dec + "}"));
        } else {
            var last = document.styleSheets[document.styleSheets.length - 1];
            if (typeof (last.addRule) == "object") last.addRule(sel, dec);
        }
    }
});
hs2.addEventListener(window, 'resize', function() {
    hs2.getPageSize();
});
hs2.addEventListener(document, 'mousemove', function(e) {
    hs2.mouse = { x: e.clientX, y: e.clientY };
});
hs2.addEventListener(document, 'mousedown', hs2.mouseClickHandler);
hs2.addEventListener(document, 'mouseup', hs2.mouseClickHandler);

hs2.addEventListener(document, 'ready', hs2.getAnchors);
hs2.addEventListener(window, 'load', hs2.preloadImages);
hs2.addEventListener(window, 'load', hs2.preloadAjax);