//Insert Images
var AbsoluteLocation = "/images/slideshow/";
var Images = new Array();
var Descriptions = new Array();
Images.push("photo01.jpg");
Descriptions.push("The first certified LEED for Homes project in NYS. Built by Kevin Stack of Northeast Natural Homes");
Images.push("photo02.jpg");
Descriptions.push("BPCA Board Member and Trainer Bob Kahabka reviews test instruments");
Images.push("photo03.jpg");
Descriptions.push("Joe Lstiburek Addresses the Audience at a BPCA Training, September 2008");
Images.push("photo04.jpg");
Descriptions.push("Joe Lstiburek at Canton Building Science Training, March 2010");

//Initialize Slideshow
SLIDES = new slideshow("SLIDES");
SLIDES.timeout = 7000;
for (var i = 0; i < Images.length; i++)
{
	SLIDES.add_slide(s = new slide(AbsoluteLocation + Images[i],"",Descriptions[i].replace(" - ","<br><font size='2'>") + "</font>"));
	s.filter = "progid:DXImageTransform.Microsoft.Fade()";
	SLIDES.textid="PhotoDescription";
}
SLIDES.shuffle();