/*
   Parklawn Elementary Website
   Created By:  Mike McKenna
   Description: This contains user specified paramters for the jQuery Lightbox plugin
  
  --------------------------------------------------------------------------------
  jQuery lightBox plugin has some configurations that you can define when call it. With that configurations you can customize your jQuery lightBox plugin.
   
    * overlayBgColor       :Used to define the overlay background color. #000 (black) is default.
    * overlayOpacity       :Used to define the overlay opacity. 0.8 is default.
    * imageLoading         :The loading gif animator. images/lightbox-ico-loading.gif is default.
    * imageBtnClose        :The close image button. images/lightbox-btn-close.gif is default. 
    * imageBtnPrev         :The previous image button. images/lightbox-btn-prev.gif is default.
    * imageBtnNext         :The next image button. images/lightbox-btn-next.gif is default.
    * containerBorderSize  :The padding CSS information used in the container image box. 10 is default.
    * containerResizeSpeed :The duration of resize effect in the container image box. 400 is default.
    * txtImage             :Text "Image" used in the image caption.
    * txtOf                :Text "of" used in the image caption.  
    * imageBlank           :The image blank for trick Internet Explorer into showing hover. images/lightbox-blank.gif is default.
    * keyToClose           :The key to close the lightBox. Letter c (close) is default.
    * keyToPrev            :The key to show the previous image. Letter p (previous) is default.
    * keyToNext            :The key to show the next image. Letter n (next) is default.
  
  --------------------------------------------------------------------------------
*/

$(function() {  
  $('a.lightbox').lightBox({         // Select all links with lightbox class 	(use rel attribute to group images)
	  overlayBgColor: '#000',
    overlayOpacity: 0.7
  });
});
