jQuery(function() {
  if(jQuery('.gallery-item a').size()>0)
  {
    
    jQuery('.gallery-item a').lightBox({
      imageLoading:			base_path+'images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
    	imageBtnPrev:			base_path+'images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
    	imageBtnNext:			base_path+'images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
    	imageBtnClose:		base_path+'images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
    	imageBlank:				base_path+'images/lightbox-blank.gif'
    });
    
  }
	
}); 
