//Insert Images
var AbsoluteLocation = "/pueblo/images/photos/";
var Images = new Array();
Images.push("pict01.jpg");
Images.push("pict02.jpg");
Images.push("pict03.jpg");
Images.push("pict04.jpg");
Images.push("pict05.jpg");

//Initialize Slideshow
SLIDES = new slideshow("SLIDES");
SLIDES.timeout = 5000;
for (var i = 0; i < Images.length; i++)
{
	SLIDES.add_slide(s = new slide(AbsoluteLocation + Images[i]));
	s.filter = "progid:DXImageTransform.Microsoft.Fade()";
}
SLIDES.shuffle();