$(document).ready(function() {
  if ($("#slideshow").length != 0) {
    var script = 'http://' + window.location.hostname + '/uploads/slides/slides.html?t=' + Math.floor(new Date().getTime() / 100000);
    $("#slideshow").load(script, function() {
      $('#slideshow').cycle({
        timeout: 6000,
        speed: 2000
      });
    });
  }
});

