/** Start the slideshow */
 public void startSlideshow() {
   if (timer == null) {
     timer = new LightboxImageTimer();
     timer.scheduleRepeating(slideshowDelayInSeconds * 1000);
     slideshowRunning = true;
   }
 }