{
     // Declare temp str var to hold building string
     var tempstr = "";
     
     // build the string up one slide at a time
     tempstr += "0pics/L1-9207.JPG;";        // Slide 1
     tempstr += "0pics/L2-12.jpg;";          // Slide 2 
     tempstr += "0pics/L3-Food1.JPG;";       // Slide 3
     tempstr += "0pics/L4-Food2.JPG;";       // Slide 4
     tempstr += "0pics/L5-685.JPG;";         // Slide 5
     tempstr += "0pics/L6-HotTub.JPG;";      // Slide 6
     tempstr += "0pics/L7-174.jpg;";         // Slide 7
     tempstr += "0pics/L8-37.jpg";           // Slide 8
     
     // Call function to play the slide show
     RunSlideShow("slideshow","slideshowbkgd",tempstr,8)
}