<!--
// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

var slideShowSpeed = 3000
var crossFadeDuration = 3
var Picture = new Array()

Picture[0] = 'images/photos/consumers.jpg'
Picture[1] = 'images/photos/corporations.jpg'
Picture[2] = 'images/photos/third_party.jpg'
Picture[3] = 'images/photos/member_services.jpg'
Picture[4] = 'images/photos/prop_disposition.jpg'
Picture[5] = 'images/photos/brokers.jpg'
Picture[6] = 'images/photos/int_aboutus.jpg'

var tss
var jss = 0
var pss = Picture.length

var preLoad = new Array()
for (iss = 0; iss < pss; iss++){
 preLoad[iss] = new Image()
 preLoad[iss].src = Picture[iss]
}

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[jss].src
 if (document.all){
 document.images.SlideShow.filters.blendTrans.Play()
 }
 jss = jss + 1
 if (jss > (pss-1)) jss=0
 tss = setTimeout('runSlideShow()', slideShowSpeed)
}
// -->
