
<!--
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000

// Duration of crossfade (seconds)
var crossFadeDuration = 2

// Specify the image files for SlideShow1
var Pic1 = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic1[0] = 'siteimages/ss-fwopera.jpg'
Pic1[1] = 'siteimages/ss-osr.jpg'
Pic1[2] = 'siteimages/ss-pkftexas.jpg'
Pic1[3] = 'siteimages/ss-rmh.jpg'

// =======================================
// do not edit anything below this line
// =======================================

var t1
var j1 = 0
var p1 = Pic1.length

var preLoad1 = new Array()
for (i = 0; i < p1; i++){
   preLoad1[i] = new Image()
   preLoad1[i].src = Pic1[i]
}

function runSlideShow1(){
   if (document.all){
      document.images.SlideShowSub.style.filter="blendTrans(duration=2)"
      document.images.SlideShowSub.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShowSub.filters.blendTrans.Apply()      
   }
   document.images.SlideShowSub.src = preLoad1[j1].src
   if (document.all){
      document.images.SlideShowSub.filters.blendTrans.Play()
   }
   j1 = j1 + 1
   if (j1 > (p1-1)) j1=0
   t1 = setTimeout('runSlideShow1()', slideShowSpeed)
}

function runSlideShows(){
   runSlideShow1()
 
}
   

