//Insert Images
var AbsoluteLocation = "/plans/";
var Images = new Array();
var Descriptions = new Array();
Images.push("../images/elevations/Avalon_ElevA.jpg");
Descriptions.push("The Avalon");
Images.push("../images/elevations/Avalon_ElevB.jpg");
Descriptions.push("The Avalon");
Images.push("../images/elevations/Genova_ElevA.jpg");
Descriptions.push("The Genova");
Images.push("../images/elevations/Genova_ElevB.jpg");
Descriptions.push("The Genova");
Images.push("../images/elevations/Milano_ElevA.jpg");
Descriptions.push("The Milano");
Images.push("../images/elevations/Milano_ElevB.jpg");
Descriptions.push("The Milano");
Images.push("../images/elevations/Royalle_ElevA.jpg");
Descriptions.push("The Royalle");
Images.push("../images/elevations/Royalle_ElevB.jpg");
Descriptions.push("The Royalle");
Images.push("../images/elevations/Serenade_ElevA.jpg");
Descriptions.push("The Serenade");
Images.push("../images/elevations/Serenade_ElevB.jpg");
Descriptions.push("The Serenade");

//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],"",Descriptions[i]));
	s.filter = "progid:DXImageTransform.Microsoft.Fade()";
	SLIDES.textid="PhotoDescription";
}
SLIDES.shuffle();