$(document).everyTime(15000, function() {
  var img = $("#photoroll img:visible");
  if (img.is(":last-child")) {
    next = $("#photoroll img:first");
  } else {
    next = img.next();
  }
  img.fadeOut(1000);
  next.fadeIn(1500);
}, 0);
