var SlideShowSpeed = 7000;
var CrossFadeDuration = 3;

var Picture = new Array(); 
var Caption = new Array(); 

Picture[1]  = 'G_3/Sl_1.jpg';
Picture[2]  = 'G_3/Sl_2.jpg';
Picture[3]  = 'G_3/Sl_3.jpg';
Picture[4]  = 'G_3/Sl_4.jpg';
Picture[5]  = 'G_3/Sl_5.jpg';
Picture[6]  = 'G_3/Sl_6.jpg';
Picture[7]  = 'G_3/Sl_7.jpg';

Caption[1]  = "tour de tolerance";
Caption[2]  = "Bill Clinton";
Caption[3]  = "Lyle Lovett";
Caption[4]  = "El Capitan";
Caption[5]  = "Mt. Christo Rey";
Caption[6]  = "Redtail Hawks";
Caption[7]  = "Western Refining";




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 ss(){
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('ss()', SlideShowSpeed);
}







