//Insert Images
var AbsoluteLocation = "/images/photos/";
var Images = new Array();
Images.push("couple_dog.jpg");
Images.push("couple_running.jpg");
Images.push("family_fall.jpg");
Images.push("family_onblanket.jpg");
Images.push("family_ongrass.jpg");
Images.push("family_walking.jpg");
Images.push("family_leaves.jpg");
Images.push("family_merrygoround.jpg");
Images.push("family_picnic.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();
