// Set the slideshow speed (in milliseconds) var SlideShowSpeed2 = 3000; // Set the duration of crossfade (in seconds) var CrossFadeDuration = 1; var Picture = new Array(); // don't change this var Caption = new Array(); // don't change this Picture[1] = "images/photoalbum/22/100_0755_tn.jpg"; Picture[2] = "images/photoalbum/22/100_0754_tn.jpg"; Picture[3] = "images/photoalbum/22/100_0743_tn.jpg"; Picture[4] = "images/photoalbum/22/100_0744_tn.jpg"; Picture[5] = "images/photoalbum/22/100_0738_tn.jpg"; Picture[6] = "images/photoalbum/22/100_0732_tn.jpg"; Picture[7] = "images/photoalbum/22/100_0731_tn.jpg"; Picture[8] = "images/photoalbum/22/100_0730_tn.jpg"; Picture[9] = "images/photoalbum/22/100_0762_tn.jpg"; Picture[10] = "images/photoalbum/22/100_0747_tn.jpg"; Picture[11] = "images/photoalbum/22/100_0748_tn.jpg"; Picture[12] = "images/photoalbum/22/100_0751_tn.jpg"; Picture[13] = "images/photoalbum/22/100_0735_tn.jpg"; Picture[14] = "images/photoalbum/22/100_0752_tn.jpg"; Picture[15] = "images/photoalbum/22/100_0733_tn.jpg"; Picture[16] = "images/photoalbum/22/100_0736_tn.jpg"; Picture[17] = "images/photoalbum/22/100_0761_tn.jpg"; Picture[18] = "images/photoalbum/22/100_0757_tn.jpg"; Picture[19] = "images/photoalbum/22/100_0737_tn.jpg"; Picture[20] = "images/photoalbum/22/100_0729_tn.jpg"; Picture[21] = "images/photoalbum/22/100_0760_tn.jpg"; Picture[22] = "images/photoalbum/22/100_0750_tn.jpg"; Picture[23] = "images/photoalbum/22/100_0734_tn.jpg"; Picture[24] = "images/photoalbum/22/100_0759_tn.jpg"; Picture[25] = "images/photoalbum/22/100_0756_tn.jpg"; Picture[26] = "images/photoalbum/22/100_0753_tn.jpg"; Picture[27] = "images/photoalbum/22/100_0749_tn.jpg"; Caption[1] = "Copyright© 2007 Pack 717"; // ===================================== // 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 runSlideShow2(){ if (document.all){ document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)"; document.images.PictureBox.filters.blendTrans.Apply(); } var jss = Math.round(Math.random()*Picture.length)-1; if (jss < 1) { jss = 1; } document.images.PictureBox.src = preLoad[jss].src; if (document.all) document.images.PictureBox.filters.blendTrans.Play(); jss = Math.round(Math.random()*Picture.length)-1; if (jss < 1) { jss = 1; } tss = setTimeout('runSlideShow2()', SlideShowSpeed2); }