// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 8000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 5;

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]  = 'assets/images/1.jpg';
Picture[2]  = 'assets/images/2.jpg';
Picture[3]  = 'assets/images/3.jpg';
Picture[4]  = 'assets/images/4.jpg';
Picture[5]  = 'assets/images/5.jpg';
Picture[6]  = 'assets/images/6.jpg';
Picture[7]  = 'assets/images/7.jpg';
Picture[8]  = 'assets/images/8.jpg';
Picture[9]  = 'assets/images/9.jpg';
Picture[10] = 'assets/images/10.jpg';
Picture[11] = 'assets/images/11.jpg';
Picture[12] = 'assets/images/12.jpg';

// 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]  = "Glacier overlook of Grinnel, near the top of the Garden Wall";
Caption[2]  = "Jon, Marco, Tracy, Kenny, and I at Notre Dame's Grotto";
Caption[3]  = "Ross, Scott, Katy, Jon, and I after the last Gonzaga home game in the Kennel -- dubbed \"Last Call at the Kennel\"";
Caption[4]  = "Patty, me, and Suzanne at our 10-year high school reunion";
Caption[5]  = "Me and my little bro, Robert";
Caption[6]  = "Mom, me, and Dad at my GU MBA graduation";
Caption[7]  = "Me, Jon, Michelle, Jake, and Beth after finishing Bloomsday";
Caption[8]  = "Stacie, Jill, Mom, Sharyl, and I at Mom's San Diego home";
Caption[9]  = "Me, Robert, Ranae, Berna, and Dad celebrating Christmas at the Boone Street Barn in 1999";
Caption[10] = "Me, Matt, Tara, Katy, Jim, Annie, Ross, Michelle, and Jon celebrating my 29th birthday at the Old Spaghetti Factory";
Caption[11] = "Me, Scott, and Andrea have a farewell dinner before I leave";
Caption[12] = "My friends at STCU gather for a photo before sending me off";

// =====================================
// 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);
}

