<!--
// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
// ss.timeout = 3000;

// By default, all of the slideshow images are prefetched.
// If you have a large number of slides you can limit the
// number of images that are prefetched.
// ss.prefetch = 1;

// By default the slideshow will repeat when you get to the end.
// ss.repeat = false;

// Create the slides and add them to the slideshow.
s = new slide();
s.src =  "images/ap-fact-fas-hotel01.jpg";
s.link = "#";
s.title = "";
s.text = "<img src='images/slide-control-1.gif' usemap='#Slide' border='0'>";
//s.target = "";
//s.attr = "";
//s.filter = "";
//s.timeout = "";
ss.add_slide(s);

s = new slide();
s.src =  "images/ap-fact-fas-hotel02.jpg";
s.link = "#";
s.title = "";
s.text = "<img src='images/slide-control-2.gif' usemap='#Slide' border='0'>";
ss.add_slide(s);

s = new slide();
s.src =  "images/ap-fact-fas-hotel03.jpg";
s.link = "#";
s.title = "";
s.text = "<img src='images/slide-control-3.gif' usemap='#Slide' border='0'>";
ss.add_slide(s);

// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss.slides.length; i++) {

  s = ss.slides[i];
  s.target = "ss_popup";
  s.attr = "width=750,height=300,resizable=no,scrollbars=no";

}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
