//***********************************************************************************************************************************/
// LyteBox v3.22
//
//  Author: Markus F. Hay
//  Website: http://www.dolem.com/lytebox
//    Date: October 2, 2007
// License: Creative Commons Attribution 3.0 License (http://creativecommons.org/licenses/by/3.0/)
// Browsers: Tested successfully on WinXP with the following browsers (using no DOCTYPE and Strict/Transitional/Loose DOCTYPES):
//          * Firefox: 2.0.0.7, 1.5.0.12
//          * Internet Explorer: 7.0, 6.0 SP2, 5.5 SP2
//          * Opera: 9.23
//
// Releases: For up-to-date and complete release information, visit http://www.dolem.com/forum/showthread.php?tid=62
//          * v3.22 (10/02/07)
//          * v3.21 (09/30/07)
//          * v3.20 (07/12/07)
//          * v3.10 (05/28/07)
//          * v3.00 (05/15/07)
//          * v2.02 (11/13/06)
//
//   Credit: LyteBox was originally derived from the Lightbox class (v2.02) that was written by Lokesh Dhakar. For more
//        information please visit http://huddletogether.com/projects/lightbox2/
//***********************************************************************************************************************************/
var LyteBoxConfig = {};
LyteBoxConfig.theme = 'grey';       // themes: grey (default), red, green, blue, gold
LyteBoxConfig.hideFlash = true;     // controls whether or not Flash objects should be hidden
LyteBoxConfig.outerBorder = true;   // controls whether to show the outer grey (or theme) border
LyteBoxConfig.resizeSpeed = 8;      // controls the speed of the image resizing (1=slowest and 10=fastest)
LyteBoxConfig.maxOpacity = 80;      // higher opacity = darker overlay, lower opacity = lighter overlay
LyteBoxConfig.navType = 1;          // 1 = "Prev/Next" buttons on top left and left (default), 2 = "<< prev | next >>" links next to image number
LyteBoxConfig.autoResize = true;    // controls whether or not images should be resized if larger than the browser window dimensions
LyteBoxConfig.doAnimations = true;  // controls whether or not "animate" Lytebox, i.e. resize transition between images, fade in/out effects, etc.
LyteBoxConfig.borderSize = 12;      // if you adjust the padding in the CSS, you will need to update this variable -- otherwise, leave this alone...

LyteBoxConfig.slideInterval = 4000;     // Change value (milliseconds) to increase/decrease the time between "slides" (10000 = 10 seconds)
LyteBoxConfig.showNavigation = true;    // true to display Next/Prev buttons/text during slideshow, false to hide
LyteBoxConfig.showClose = true;         // true to display the Close button, false to hide
LyteBoxConfig.showDetails = true;       // true to display image details (caption, count), false to hide
LyteBoxConfig.showPlayPause = true;     // true to display pause/play buttons next to close button, false to hide
LyteBoxConfig.autoEnd = true;           // true to automatically close Lytebox after the last image is reached, false to keep open
LyteBoxConfig.pauseOnNextClick = false; // true to pause the slideshow when the "Next" button is clicked
LyteBoxConfig.pauseOnPrevClick = true;  // true to pause the slideshow when the "Prev" button is clicked

LyteBoxConfig.iframeWidth = 650;
LyteBoxConfig.iframeHeight = 450;