jQuery(document).ready(function(){

settings = {
			// Configuration related to images
			imageLoading:			'squelettes/lib/js/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'squelettes/lib/js/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'squelettes/lib/js/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'squelettes/lib/js/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'squelettes/lib/js/images/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)

		};


  jQuery('a.lightbox').lightBox(settings);
  
});

