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

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;
var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

var tss;
var iss;
var jss = 1;
var pss;

var preLoad = new Array();     

function runSlideShow(pg)
{
  setupPics(pg);
  
  pss = Picture.length-1;

  for (iss = 1; iss < pss+1; iss++){
  preLoad[iss] = new Image();
  preLoad[iss].src = Picture[iss];}

  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);
}

function setupPics(pg)
{
  if (pg == 'nursery')
  {
    Picture[1]  = 'images/nrm/1.jpg';   Caption[1]  = "This is the 1 caption.";
    Picture[2]  = 'images/nrm/2.jpg';   Caption[2]  = "This is the 2 caption.";
    Picture[3]  = 'images/nrm/3.jpg';   Caption[3]  = "This is the 3 caption.";
    Picture[4]  = 'images/nrm/4.jpg';   Caption[4]  = "This is the 4 caption.";
    Picture[5]  = 'images/nrm/5.jpg';   Caption[5]  = "This is the 5 caption.";
    Picture[6]  = 'images/nrm/6.jpg';   Caption[6]  = "This is the 6 caption.";
    Picture[7]  = 'images/nrm/7.jpg';   Caption[7]  = "This is the 7 caption.";
    Picture[8]  = 'images/nrm/8.jpg';   Caption[8]  = "This is the 8 caption.";
    Picture[9]  = 'images/nrm/9.jpg';   Caption[9]  = "This is the 9 caption.";
    Picture[10] = 'images/nrm/10.jpg';  Caption[10] = "This is the 10 caption.";
    Picture[11] = 'images/nrm/11.jpg';  Caption[11] = "This is the 11 caption.";
    Picture[12] = 'images/nrm/12.jpg';  Caption[12] = "This is the 12 caption.";
    Picture[13] = 'images/nrm/13.jpg';  Caption[13] = "This is the 13 caption.";
    Picture[14] = 'images/nrm/14.jpg';  Caption[14] = "This is the 14 caption.";
    Picture[15] = 'images/nrm/15.jpg';  Caption[15] = "This is the 15 caption.";
    Picture[16] = 'images/nrm/16.jpg';  Caption[16] = "This is the 16 caption.";
  }

  if (pg == 'garden')
  {
    Picture[1]  = 'images/grdn/1.jpg';   Caption[1]  = "This is the 1 caption.";
    Picture[2]  = 'images/grdn/2.jpg';   Caption[2]  = "This is the 2 caption.";
    Picture[3]  = 'images/grdn/3.jpg';   Caption[3]  = "This is the 3 caption.";
    Picture[4]  = 'images/grdn/4.jpg';   Caption[4]  = "This is the 4 caption.";
    Picture[5]  = 'images/grdn/5.jpg';   Caption[5]  = "This is the 5 caption.";
    Picture[6]  = 'images/grdn/6.jpg';   Caption[6]  = "This is the 6 caption.";
  }

  if (pg == 'baby')
  {
    Picture[1]  = 'images/brm/1.jpg';   Caption[1]  = "This is the 1 caption.";
    Picture[2]  = 'images/brm/2.jpg';   Caption[2]  = "This is the 2 caption.";
    Picture[3]  = 'images/brm/3.jpg';   Caption[3]  = "This is the 3 caption.";
    Picture[4]  = 'images/brm/4.jpg';   Caption[4]  = "This is the 4 caption.";
    Picture[5]  = 'images/brm/5.jpg';   Caption[5]  = "This is the 5 caption.";
    Picture[6]  = 'images/brm/6.jpg';   Caption[6]  = "This is the 6 caption.";
    Picture[7]  = 'images/brm/7.jpg';   Caption[7]  = "This is the 7 caption.";
    Picture[8]  = 'images/brm/8.jpg';   Caption[8]  = "This is the 8 caption.";
    Picture[9]  = 'images/brm/9.jpg';   Caption[9]  = "This is the 9 caption.";
    Picture[10] = 'images/brm/10.jpg';  Caption[10] = "This is the 10 caption.";
    Picture[11] = 'images/brm/11.jpg';  Caption[11] = "This is the 11 caption.";
    Picture[12] = 'images/brm/12.jpg';  Caption[12] = "This is the 12 caption.";
    Picture[13] = 'images/brm/13.jpg';  Caption[13] = "This is the 13 caption.";
    Picture[14] = 'images/brm/14.jpg';  Caption[14] = "This is the 14 caption.";
    Picture[15] = 'images/brm/15.jpg';  Caption[15] = "This is the 15 caption.";
    Picture[16] = 'images/brm/16.jpg';  Caption[16] = "This is the 16 caption.";
    Picture[17] = 'images/brm/17.jpg';  Caption[17] = "This is the 16 caption.";
  }
}
