﻿//
//  Configurationl
//
LightboxOptions = Object.extend({
    fileLoadingImage: 'img/loading.gif',
    fileNavCloseImage: 'img/close.gif',
    fileBottomNavNextImage: 'img/weiter.gif',
    fileBottomNavPrevImage: 'img/zurueck.gif',
    fileBottomNavPixelImage: 'img/pixel.gif',
    overlayOpacity: 0.8,   // controls transparency of shadow overlay

    animate: true,         // toggles resizing animations
    resizeSpeed: 8,        // controls the speed of the image resizing animations (1=slowest and 10=fastest)
    resizeSpeedDetail: 10,        // controls the speed of the image resizing animations (1=slowest and 10=fastest)

    borderSizeX: 10,         //if you adjust the padding in the CSS, you will need to update this variable
    borderSizeY: 5,         //if you adjust the padding in the CSS, you will need to update this variable
    maxImageSizeWidth: 400,
    maxImageSizeHeight: 400,

    // When grouping images this is used to write: Image # of #.
    // Change it for non-english localization
    labelImage: "Bild",
    labelOf: "von"
}, window.LightboxOptions || {});


