// JavaScript Document

$(document).ready(function () {
  
  var urlroot = ips.system.urlroot;
  
  // SLIDESHOW FRONTPAGE
  if($("#slideshow").length) {
    var folderId = $("#slideshow").attr("rel");
    $("#slideshow").load(urlroot + "?module=Files&action=FileFolder.publicDisplay&id=" + folderId + "&template=slideshow", function(){
      $(this).find("#pics").cycle({
        fx: 'fade',
        timeout:  4000
      });
    });
  }
});