// Highslide site settings
// DO NOT EDIT. Generated on 2008-06-06 00:28:56 by the Highslide Configuration component

hs.showCredits = true;
hs.graphicsDir = '/plugins/content/highslide/graphics/';
hs.outlineType = 'drop-shadow';
hs.outlineStartOffset = 3;
hs.outlineWhileAnimating = false;
hs.captionEval = 'this.a.title';
hs.loadingText = 'Loading...';
hs.loadingTitle = 'Click to cancel';
hs.loadingOpacity = 0.75;
hs.padToMinWidth = false;
hs.focusTitle = 'Click to bring to front';
hs.closeText = 'Close';
hs.closeTitle = 'Click to close';
hs.resizeTitle = 'Resize';
hs.moveText = 'Move';
hs.nextText = 'Next';
hs.previousText = 'Previous';
hs.restoreCursor = 'zoomout.cur';
hs.creditsHref = 'http://vikjavev.no/highslide/';
hs.creditsText = 'Powered by <i>Highslide JS</i>';
hs.creditsTitle = 'Go to the Highslide JS homepage';
hs.easing = 'easeInQuad';
hs.easingClose = hs.easing;
hs.fullExpandOpacity = 1.0;
hs.fullExpandTitle = 'Expand to actual size';
hs.marginTop = 10;
hs.marginBottom = 15;
hs.marginLeft = 10;
hs.marginRight = 15;
hs.minHeight = 200;
hs.minWidth = 200;
hs.numberOfImagesToPreload = 5;
hs.transitions = ['expand'];
hs.objectLoadTime = 'before';
hs.fullExpandPosition = 'bottom right';
hs.align = '';
hs.anchor = '';
hs.allowSizeReduction = true;
hs.fadeInOut = false;
hs.allowMultipleInstances = true;
hs.allowWidthReduction = false;
hs.allowHeigthReduction = true;
hs.blockRightClick = false;
hs.enableKeyListener = true;
hs.cacheAjax = true;
hs.preserveContent = true;
hs.captionSlideSpeed = 1;
hs.spaceForCaption = 30;
hs.dragSensitivity = 5;
hs.dimmingDuration = 50;
hs.expandDuration = 250;
hs.expandSteps = 10;
hs.zIndexCounter = 1001;
hs.restoreTitle = 'Click to close image, click and drag to move. Use arrow keys for next and previous.';
hs.Expander.prototype.onBeforeExpand = function(sender, e)
{
        if (document.getElementById('mycustom-overlay') == null)
        {
                var div = document.createElement('div');
                div['innerHTML'] = '<div class="controlbar5">          <a href="#" onclick="return hs.previous(this)" title="Previous (left arrow key)" class="previous"></a>          <a href="#" onclick="return hs.next(this)" title="Next (right arrow key)" class="next"></a>          <a href="#" onclick="return false" title="Click and drag to move" class="highslide-move"></a>          <a href="#" onclick="return hs.close(this)" title="Close" class="close"></a></div>';
                div['id'] = 'mycustom-overlay';
                div['className'] = 'highslide-overlay';
                sender.a.appendChild( div );
        }
        return true;
}
hs.registerOverlay(
{
    thumbnailId: 'hs-nav',
    overlayId: 'mycustom-overlay',
    position: 'top right',
    hideOnMouseOut: true,
    opacity: 1,
    useOnHtml: false
});
hs.Expander.prototype.onAfterExpand = function (sender, e) {
        if (this.custom != null
       &&this.custom['overlayId'] != null)
    {
                sender.createOverlay( this.custom );
        }
}
hs.Expander.prototype.onInit = function (sender, e)
{
        if (this.custom != null
           &&this.custom['swffile'] != null
           &&this.swfObject == null
           )
        {
                this.swfObject = new SWFObject( this.custom['swffile']
                                              , this.custom['swfobjectId']
                                              , this.custom['swfwidth']
                                              , this.custom['swfheight']
                                              , this.custom['swfversion']
                                              , this.custom['swfbgcolor']
                                                                          );
                this.swfObject.addParam('wmode', 'transparent' );
        }
        return true;
}