in themes/lucene/static/javascript/lucene/slides.js [42:52]
startSlideshow: function(event) {
if (event) { Event.stop(event); }
if (!this.running) {
this.fadeStartBtn();
this.executer = new PeriodicalExecuter(function(){
this.updateSlide(this.current_slide+1);
}.bind(this),this.options.Delay);
this.running=true;
}
},