
// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = '/commissioners/pfm/images/animalshelter.bmp'
Picture[2]  = '/commissioners/pfm/images/courthouseannex.bmp'
Picture[3]  = '/commissioners/pfm/images/antenna.bmp'
Picture[4]  = '/commissioners/pfm/images/autotitleeast.bmp'
Picture[5]  = '/commissioners/pfm/images/autotitlenorth.bmp'
Picture[6]  = '/commissioners/pfm/images/autotitlesouth.bmp'
Picture[7]  = '/commissioners/pfm/images/autotitlewest.bmp'
Picture[8]  = '/commissioners/pfm/images/boardofelections.bmp'
Picture[9]  = '/commissioners/pfm/images/oldsubstation.bmp'
Picture[10] = '/commissioners/pfm/images/commissionersgarage.bmp'
Picture[11] = '/commissioners/pfm/images/correctionfacility.bmp'
Picture[12] = '/commissioners/pfm/images/cooperstadium.bmp'
Picture[13] = '/commissioners/pfm/images/correctionalcenter1.bmp'
Picture[14] = '/commissioners/pfm/images/correctionalcenter2.bmp'
Picture[15] = '/commissioners/pfm/images/courthouse.bmp'
Picture[16] = '/commissioners/pfm/images/servicebuilding.bmp'
Picture[17] = '/commissioners/pfm/images/fleetgarage.bmp'
Picture[18] = '/commissioners/pfm/images/hallofjustice.bmp'
Picture[19] = '/commissioners/pfm/images/eastoppcenter.bmp'
Picture[20] = '/commissioners/pfm/images/juveniledetention.bmp'
Picture[21] = '/commissioners/pfm/images/juveniledetentiongarage.bmp'
Picture[22] = '/commissioners/pfm/images/memorialhall.bmp'
Picture[23] = '/commissioners/pfm/images/millerhall.bmp'
Picture[24] = '/commissioners/pfm/images/morgue.bmp'
Picture[25] = '/commissioners/pfm/images/muncipalcourt.bmp'
Picture[26] = '/commissioners/pfm/images/northoppcenter.bmp'
Picture[27] = '/commissioners/pfm/images/northeastoppcenter.bmp'
Picture[28] = '/commissioners/pfm/images/southoppcenter.bmp'
Picture[29] = '/commissioners/pfm/images/westoppcenter.bmp'
Picture[30] = '/commissioners/pfm/images/satelliteoffice.bmp'
Picture[31] = '/commissioners/pfm/images/substation.bmp'
Picture[32] = '/commissioners/pfm/images/trainingacademy1.bmp'
Picture[33] = '/commissioners/pfm/images/trainingacademy2.bmp'
Picture[34] = '/commissioners/pfm/images/veteransmemorial.bmp'
Picture[35] = '/commissioners/pfm/images/workrelease.bmp'
Picture[36] = '/commissioners/pfm/images/engineersoffice.bmp'
Picture[37] = '/commissioners/pfm/images/parksandgrounds.bmp'


// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "Animal Shelter";
Caption[2]  = "Courthouse Annex";
Caption[3]  = "Antenna Site";
Caption[4]  = "Auto Title East";
Caption[5]  = "Auto Title North";
Caption[6]  = "Auto Title South";
Caption[7]  = "Auto Title West";
Caption[8]  = "Board of Elections Warehouse";
Caption[9]  = "Old Substation Building";
Caption[10] = "Commissioner's Garage";
Caption[11] = "Community Based Correction Facility";
Caption[12] = "Cooper Stadium";
Caption[13] = "Correctional Center I";
Caption[14] = "Correctional Center II";
Caption[15] = "Courthouse";
Caption[16] = "Service Building";
Caption[17] = "Fleet Management Garage";
Caption[18] = "Hall of Justice";
Caption[19] = "East Opportunity Center";
Caption[20] = "Juvenile Detention Center";
Caption[21] = "Juvenile Detention Center Garage";
Caption[22] = "Memorial Hall";
Caption[23] = "Miller Hall";
Caption[24] = "Robert Evans Hall Morgue";
Caption[25] = "Municipal Court";
Caption[26] = "North Opportunity Center";
Caption[27] = "Northeast Opportunity Center";
Caption[28] = "South Opportunity Center";
Caption[29] = "West Opportunity Center";
Caption[30] = "Sheriff's Satellite Office";
Caption[31] = "Sheriff's Substation";
Caption[32] = "Training Academy I";
Caption[33] = "Sheriff's Firing Range";
Caption[34] = "Veterans Memorial";
Caption[35] = "Work Release";
Caption[36] = "Engineer's Office";
Caption[37] = "Parks and Grounds";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

