//
 Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 4;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var Links = new Array(); // don't change this



 Links[0]='/';
 Caption[0]='';
 Picture[0]=''

 Links[1]='/';
 Caption[1]='';
 Picture[1]=''
var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;
//alert(pss);


function runSlideShow(){

var b=document.getElementById("bbdiv");
//alert(b.innerHTML);

b.style.backgroundImage = "url("+Picture[jss]+")";


b.innerHTML= ""+Caption[jss]+"";




//if (document.all) document.images.bbdiv.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=0;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

runSlideShow();