			$(document).ready(function(){
				var qtdGaleria = 4; //tamanho da galeria
				
				for(n = 1; n <= qtdGaleria; n++){
					$('a[rel=lightbox-'+ n +']').lightBox({
						fixedNavigation: true,
						imageLoading: URL_BASE + 'img/lightbox/lightbox-ico-loading.gif',               
						imageBtnPrev: URL_BASE + 'img/lightbox/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image               
						imageBtnNext: URL_BASE +'img/lightbox/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
						imageBtnClose:URL_BASE +'img/lightbox/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
						imageBlank:   URL_BASE + 'img/lightbox/lightbox-blank.gif',
						txtImage: 'Imagem', 
						txtOf:'de'
					});
				}
					
			});

