//Insert Images
var AbsoluteLocation = "/images/photos/";
var Images = new Array();
Images.push("photo01.jpg");
Images.push("photo02.jpg");
Images.push("photo03.jpg");
Images.push("photo04.jpg");
Images.push("photo05.jpg");
Images.push("photo06.jpg");
Images.push("photo07.jpg");
Images.push("photo08.jpg");
Images.push("photo09.jpg");
Images.push("photo10.jpg");
Images.push("photo11.jpg");
Images.push("photo12.jpg");
Images.push("photo13.jpg");
Images.push("photo14.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();