
// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array(18) // don't touch this
var Desc = new Array(18) // don't touch this

// to add more images, just continue
// the pattern, adding to the array below

  Pic[0]= "images/ShopTour/29_inch_square_beaded_lamps.jpg";
  Desc[0]= "29 inch square beaded lamps.";
  Pic[1]= "images/ShopTour/30_inch_footed_iron_crystal_lamp.jpg";
  Desc[1]= "30 inch footed iron crystal lamp.";
  Pic[2]= "images/ShopTour/A_walk_in_the_park_framed_and_ready_to_hang.jpg";
  Desc[2]= "A Walk in the Park, framed and ready to hang.";
  Pic[3]= "images/ShopTour/Apple_Motif_Hand_Painted_Lamps.jpg";
  Desc[3]= "Apple Motif Hand Painted Lamps.";
  Pic[4]= "images/ShopTour/Aromatique_Fine_Fragrances.jpg";
  Desc[4]= "Aromatique Fine Fragrances.";
  Pic[5]= "images/ShopTour/Boy_Cherub_left_and_right_bronze_reproductions_Very_Nice.jpg";
  Desc[5]= "Boy Cherub left and right bronze reproductions. Very nice!";
  Pic[6]= "images/ShopTour/Bronze_Clock_Reproduction.jpg";
  Desc[6]= "Bronze Clock Reproduction.";
  Pic[7]= "images/ShopTour/Chereb_Pendalem_Clock_bronze_reproduction_nice_detail.jpg";
  Desc[7]= "Chereb Pendalem Clock bronze reproduction. Nice detail!";
  Pic[8]= "images/ShopTour/Country_Cottage_Pictures_framed_and_ready_to_hang.jpg";
  Desc[8]= "Country Cottage pictures, framed and ready to hang.";
  Pic[9]= "images/ShopTour/Dried_Euk_Wreath.jpg";
  Desc[9]= "Dried Euk Wreath.";
  Pic[10]= "images/ShopTour/Dried_Palm_Leaf_Obelisk.jpg";
  Desc[10]= "Dried Palm Leaf Obelisk.";
  Pic[11]= "images/ShopTour/Exotic_Orchid_pic_framed_and_ready_to_hang.jpg";
  Desc[11]= "Exotic Orchid picture, framed and ready to hang.";
  Pic[12]= "images/ShopTour/Fountains.jpg";
  Desc[12]= "Fountains";
  Pic[13]= "images/ShopTour/Grapefruit_Pic.jpg";
  Desc[13]= "Grapefruit.";
  Pic[14]= "images/ShopTour/Leaf_Pattern_Base_Round_Lamps.jpg";
  Desc[14]= "Leaf Pattern Base Round Lamps.";
  Pic[15]= "images/ShopTour/Magnolia_Full_Bloom_Pic.jpg";
  Desc[15]= "Magnolia Full Bloom.";
  Pic[16]= "images/ShopTour/Old_World_Wall_Sconce.jpg";
  Desc[16]= "Old World Wall Sconce.";
  Pic[17]= "images/ShopTour/Pear_Fruit_Pic.jpg";
  Desc[17]= "Pear Fruit.";

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()

for (i = 0; i < p; i++){

   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]

}

function runSlideShow(){

   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }

   document.images.SlideShow.src = preLoad[j].src;
   var ilink = document.getElementById("SlideTitle");
   ilink.innerHTML = Desc[j];
   
//   if (document.all){
//      ilink.innerHTML = Pic[j,1]
//   }
   
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }

   j = j + 1

   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}

// Load function after page loads
window.onload=loadImg;