// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 5;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below
















var Pic = new Array
("images/home_rotation/reecerodgersramsey.jpg",
"images/home_rotation/MDAPTA1.jpg",
"images/home_rotation/MDAPTA2.jpg",
"images/home_rotation/MDAPTA3.jpg",
"images/home_rotation/MDAPTA4.jpg",
"images/home_rotation/aptatour1.jpg",
"images/home_rotation/aptatour2.jpg",
"images/home_rotation/aptatour3.jpg",
"images/home_rotation/aptatour4.jpg",
"images/home_rotation/1graduation2009.jpg",
"images/home_rotation/2012ropes1.jpg",
"images/home_rotation/CFwalk2009.jpg",
"images/home_rotation/2012ropes2.jpg",
"images/home_rotation/researchday2009.jpg",
"images/home_rotation/2graduation2009.jpg",
"images/home_rotation/2012ropes3.jpg",
"images/home_rotation/2researchday2009.jpg",
"images/home_rotation/3graduation2009.jpg",
"images/home_rotation/ggear2009.jpg",
"images/home_rotation/2mdaptamtg2009.jpg",
"images/home_rotation/4researchday2009.jpg",
"images/home_rotation/conniesullivan.jpg",
"images/home_rotation/3mdaptamtg2009.jpg",
"images/home_rotation/5researchday2009.jpg",
"images/home_rotation/4graduation2009.jpg",
"images/home_rotation/1mdaptamtg2009.jpg",
"images/home_rotation/3researchday2009.jpg",
"images/home_rotation/bernard.jpg",
"images/home_rotation/cleanup1.jpg",
"images/home_rotation/cleanup2.jpg",
"images/home_rotation/wellness1.jpg",
"images/home_rotation/wellness3.jpg",
"images/home_rotation/wellness4.jpg",
"images/home_rotation/wellness5.jpg",
//"images/home_rotation/flagfootball.jpg",
//"images/home_rotation/apta4.jpg",
//"images/home_rotation/apta2.jpg",
//"images/home_rotation/apta1.jpg",
//"images/home_rotation/rodgers.jpg",
"images/home_rotation/reecerodgers.jpg"
//"images/home_rotation/alumni1.jpg",
//"images/home_rotation/alumni2.jpg",
//"images/home_rotation/alumni3.jpg",
//"images/home_rotation/alumni4.jpg",
//"images/home_rotation/alumni5.jpg",
//"images/home_rotation/classof98.jpg",
//"images/home_rotation/conted2.jpg",
//"images/home_rotation/conted3.jpg",
//"images/home_rotation/conted.jpg",
//"images/home_rotation/sponsor.jpg",
//"images/home_rotation/racecure2008.jpg"
//"images/home_rotation/pic1anat2011.jpg",
//"images/home_rotation/hobart.jpg",
//"images/home_rotation/pic2anat2011.jpg"
//"images/home_rotation/image0259.jpg",
//"images/home_rotation/image0265.jpg",
//"images/home_rotation/image0299.jpg",
//"images/home_rotation/image0311.jpg",
//"images/home_rotation/image0317.jpg",
//"images/home_rotation/imagegolf1.jpg",
//"images/home_rotation/imagegolf2.jpg",
//"images/home_rotation/imagegolf5.jpg",
//"images/home_rotation/imagegolf4.jpg",
//"images/home_rotation/imagegolf3.jpg",
//"images/home_rotation/picwcb1.jpg",
//"images/home_rotation/picwcb3.jpg",
//"images/home_rotation/picwcb5.jpg",
//"images/home_rotation/picwcb7.jpg",
//"images/home_rotation/image01.jpg",
//"images/home_rotation/image02.jpg",
//"images/home_rotation/image03.jpg",
//"images/home_rotation/image04.jpg",
//"images/home_rotation/image05.jpg",
//"images/home_rotation/image06.jpg"
















































);
















var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}

























