jQuery.noConflict();

function setLightboxForImages() {
  jQuery("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) {
    return (this == el) || ((this.rel.length > 1) && (this.rel == el.rel));
  });
}

jQuery(document).ready(function($) {
  // set lightbox for images
  setLightboxForImages();
  
});