$(document).ready(function(){ //alert("LB init_base"); //base_url = document.location.href.substring(0, document.location.href.indexOf('default.asp'), 0); initRIT_Lightbox(); }); function initRIT_Lightbox() { var attrs = {}; var classes = $("a.ritLightBox").map(function(indx, element){ var key = $(element).attr("rel"); attrs[key] = true; return attrs; }); var attrsName = Object.keys(attrs); attrsName.forEach(function(entry) { $( "[rel='"+entry+"']" ).imageLightbox({ activity: true, arrows: true, button: true, caption: true, navigation: false, overlay: true, preloadNext: true, animationSpeed: 300, enableKeyboard: true, fullscreen: true, quitOnEnd: false, quitOnImgClick: false, quitOnDocClick: true, quitOnEscKey: true, lockBody: false }); }); }