//Insert Images
var AbsoluteLocation = "/images/home/";
var Images = new Array();
Images.push("pict10.jpg");
Images.push("pict5.jpg");
Images.push("pict1.jpg");
Images.push("pict6.jpg");
Images.push("pict2.jpg");
Images.push("pict7.jpg");
Images.push("pict3.jpg");
Images.push("pict8.jpg");
Images.push("pict4.jpg");
Images.push("pict9.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();