
var SlideShowSpeed_2 = 2500; // Set the slideshow speed (in milliseconds)
var CrossFadeDuration_2 = 2; // Set the duration of crossfade (in seconds)
var Picture_2 = new Array(); 

Picture_2[1]  = 'images/blackbox.jpg'; 
Picture_2[2]  = 'images/stevethumb1.jpg';
//Picture_2[3]  = 'images/marshallthumb1.jpg';
//Picture_2[4]  = 'images/blackbox.jpg';
//Picture_2[5]  = 'images/stevethumb2.jpg';
//Picture_2[6]  = 'images/blackbox.jpg';
//Picture_2[7]  = 'images/peterthumb2.jpg';
//Picture_2[8]  = 'images/gregthumb2.jpg';
//Picture_2[9]  = 'images/blackbox.jpg';
//Picture_2[10]  = 'images/peterthumb1.jpg';
//Picture_2[11]  = 'images/gregthumb1.jpg';

var tss_2;
var iss_2;
var jss_2 = 1;
var pss_2 = Picture_2.length-1;

var preLoad_2 = new Array();
for (iss_2 = 1; iss_2 < pss_2+1; iss_2++){
preLoad_2[iss_2] = new Image();
preLoad_2[iss_2].src = Picture_2[iss_2];}

function runSlideShow2(){
if (document.all){
document.images.PictureBox2.style.filter="blendTrans(duration=CrossFadeDuration_2)";
document.images.PictureBox2.filters.blendTrans.Apply();}
document.images.PictureBox2.src = preLoad_2[jss_2].src;

if (document.all) document.images.PictureBox2.filters.blendTrans.Play();
jss_2 = jss_2 + 1;
if (jss_2 > (pss_2)) jss_2=1;
tss_2 = setTimeout('runSlideShow2()', SlideShowSpeed_2);
}
