$(document).ready(function() {
  var prefix = '/behavior/jquery-lightbox-0.5/images/'
  $('ol.pictures a').lightBox({
    imageLoading:  prefix+'lightbox-ico-loading.gif',// (string) Path and the name of the loading icon
    imageBtnPrev:  prefix+'lightbox-btn-prev.gif',   // (string) Path and the name of the prev button image
    imageBtnNext:  prefix+'lightbox-btn-next.gif',   // (string) Path and the name of the next button image
    imageBtnClose: prefix+'lightbox-btn-close.gif',  // (string) Path and the name of the close btn
    imageBlank:    prefix+'lightbox-blank.gif',      // (string) Path and the name of a blank image (one pixel)
  });
});

