<!--  Created with the CoffeeCup HTML Editor  -->
<!--        http://www.coffeecup.com/         -->
<!--     Brewed on 01/30/2005 3:33:38 PM      -->
<!--  Copyright 2003-2005 Avenue Art Gallery  -->

/**************************************************************************/
/* Functions for Slide Show Viewer                                        */
/**************************************************************************/
var currentpage=0;
var i=0;
var name=0;

var Photos = new Array();
Photos[name]=new Array();
Photos[name][i++]   = "ArtistGallery/JohnPalmer/Banff-1-010x200.jpg";
Photos[name][i++]   = "ArtistGallery/JohnPalmer/BanffAndGlacier-005x200.jpg";
Photos[name][i++]   = "ArtistGallery/JohnPalmer/BanffAndGlacier-010x200.jpg";
Photos[name][i++]   = "ArtistGallery/JohnPalmer/Cannonsville-Catskills008x200.jpg";
Photos[name][i++]   = "ArtistGallery/JohnPalmer/Banff-6-001x200.jpg";

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

var t
maxpage=Photos[name].length - 1;
var resumepage
var paused = 0

function runSlideShow(parm){
   page=parm
   if (document.all){
      document.images.Slides.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.Slides.filters.blendTrans.Apply()      
   }
   document.images.Slides.src = Photos[name][page]

   if (document.all){
      document.images.Slides.filters.blendTrans.Play()
   }
   page=page+1
   if (page > maxpage) page=0
   resumepage=page
   t = setTimeout('runSlideShow(page)', slideShowSpeed)
}


