//Insert Images
var AbsoluteLocation = "http://www.battensplus.com/images/headers/";
var Images = new Array();
Images.push("pict1.jpg");
Images.push("pict2.jpg");
Images.push("pict3.jpg");
Images.push("pict4.jpg");
Images.push("pict5.jpg");
Images.push("pict6.jpg");
Images.push("pict7.jpg");
Images.push("pict8.jpg");
Images.push("pict9.jpg");
Images.push("pict10.jpg");
Images.push("pict11.jpg");
Images.push("pict12.jpg");

//Initialize Slideshow
SLIDES= new slideshow("SLIDES");
SLIDES.timeout = 4000; //In Milliseconds
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();