// -----------------------------------------------------------------------------------
//
//	Lightbox v2.03.3
//	by Lokesh Dhakar - http://www.huddletogether.com
//	5/21/06
//
//	For more information on this script, visit:
//	http://huddletogether.com/projects/lightbox2/
//
//	Licensed under the Creative Commons Attribution 2.5 License - http://creativecommons.org/licenses/by/2.5/
//	
//	Credit also due to those who have helped, inspired, and made their code available to the public.
//	Including: Scott Upton(uptonic.com), Peter-Paul Koch(quirksmode.com), Thomas Fuchs(mir.aculo.us), and others.
//
//  ***
//  This version of Lightbox has been (slightly) modified for purposes of Pub-Me CMS. Therefore if you want to use the
//  source code, you may find it easier to download the source available at the above mentioned address.
//
//  This is DEFAULT CONFIG FILE used by Pub-Me CMS
//
// -----------------------------------------------------------------------------------

var LBpathToRoot = "";                            // root directory
var LBpathToImages = "styles/lightbox/default/";  // deafault images used by style sheet
var LBKeyPrevious = 'p';                          // access key for 'previous' 
var LBKeyPrevious = 'n';                          // access key for 'next'
var LBTranslateImage = 'Image';                   // default 'translation' of the word Image
var LBTranslateOf = ' of ';                       // default 'translation' of the word 'of' (the spaces are important)
var LBremoveDuplicates = true;                    // enables/disables removal of duplicate pictures from set
var overlayOpacity = 0.75;                        // controls transparency of shadow overlay
var animate = true;                               // toggles resizing animations
var resizeSpeed = 9.5;                            // controls the speed of the image resizing animations
                                                  //    (1=slowest and 10=fastest)
var borderSize = 10;                              // if you adjust the padding in the CSS,
                                                  //    you will need to update this variable
var fileLoadingImage = "loading.gif";             // image to be displayed when "loading"
var fileBottomNavCloseImage = "closelabel.gif"    // image file to be displayed as "closelabel"
var LBGalleryCollection = new Array ();           // array used for galleries (needed since galleries
                                                  //    can be on multiple pages which the "anchor handle"
																									//    is not able to take into consideration)  


