var slideShowSpeed = 5000
var crossFadeDuration = 10
var Pic = new Array() 

	Pic[0] = 'banner/lawnimage01.gif'	
	
	Pic[1] = 'banner/lawnimage02.gif'	
	
	Pic[2] = 'banner/lawnimage03.gif'
	
	Pic[3] = 'banner/lawnimage04.gif'
	
	Pic[4] = 'banner/lawnimage05.gif'

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 runSlideShowTree(){
   if (document.all){
      document.images.SlideShowTree.style.filter="blendTrans(duration=2)"
      document.images.SlideShowTree.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowTree.filters.blendTrans.Apply()      
   }
   document.images.SlideShowTree.src = preLoad[j].src
   if (document.all){
      document.images.SlideShowTree.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShowTree()', slideShowSpeed)
}