//set the files to be loaded here!
var slides=["about.html", "facebook.html", "forum.html", ];
//The slideshow function itself
$(document).ready(function() {
  for (slide in slides) {
    $('<div class="slide">').load("slides/" + slides[slide]).appendTo('#slideshow');
  }

  $('#slideshow').cycle({ 
      fx:     'fade', 
      speed:  1000, //Speed of the effect in ms.
      timeout: 6500  //Pause during each frame in ms.
  });
});
