$(document).ready(function() {
    $('#gallery a').lightBox({
		overlayBgColor:'#A3B2D9',
		overlayOpacity:0.9,
		fixedNavigation:false,
		imageLoading:'/site_media/images/lightbox/lightbox-ico-loading.gif',
		imageBtnPrev:'/site_media/images/lightbox/lightbox-btn-prev.gif',
		imageBtnNext:'/site_media/images/lightbox/lightbox-btn-next.gif',
		imageBtnClose:'/site_media/images/lightbox/lightbox-btn-close.gif',
		imageBlank:				'/site_media/images/lightbox/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
		containerBorderSize:	10,			// (integer) If you adjust the padding in the CSS for the container, #lightbox-container-image-box, you will need to update this value
		containerResizeSpeed:	100,
						// Configuration related to texts in caption. For example: Image 2 of 8. You can alter either "Image" and "of" texts.
						txtImage:				'Image',	// (string) Specify text "Image"
						txtOf:					'of',		// (string) Specify text "of"
						// Configuration related to keyboard navigation
						keyToClose:				'c',		// (string) (c = close) Letter to close the jQuery lightBox interface. Beyond this letter, the letter X and the SCAPE key is used to.
						keyToPrev:				'p',		// (string) (p = previous) Letter to show the previous image
						keyToNext:				'n'
	});
});
