﻿function startSlideShow() {
  timerId = setInterval('changePhoto();', 3000);
  slideShowStarted = true;
}

function changePhoto() {
  document.getElementById('nextPhoto').click();
}
