  $(function() {
      $('a[rel^=lightbox]').lightBox({
    	  overlayBgColor: '#f0f0f0',		// (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.
    	  txtImage:		'',	// (string) Specify text "Image"
    	  txtOf:		'/',		// (string) Specify text "of"
    	  fixedNavigation: true,
    	  imageLoading: 'project/media/images/lightbox-ico-loading.gif',	// (string) Path and the name of the loading icon
    	  imageBtnPrev:	'project/media/images/lightbox-btn-prev.gif',		// (string) Path and the name of the prev button image
    	  imageBtnNext:	'project/media/images/lightbox-btn-next.gif',		// (string) Path and the name of the next button image
    	  imageBtnClose:'project/media/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
    	  imageBlank:	'project/media/images/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
    	  offsetTop:	100
      });
  });

