//Insert Images
var AbsoluteLocation = "/images/headers/";
var Images = new Array();
if(season == "spring")
{
	Images.push("spring1.jpg");
	Images.push("spring2.jpg");
	Images.push("spring3.jpg");
}
else if(season == "summer")
{
	Images.push("summer1.jpg");
	Images.push("summer2.jpg");
	Images.push("summer3.jpg");
}
else if(season == "fall")
{
	Images.push("fall1.jpg");
	Images.push("fall2.jpg");
	Images.push("fall3.jpg");
}
else if(season == "winter")
{
	Images.push("winter1.jpg");
	Images.push("winter2.jpg");
	Images.push("winter3.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();