// (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 slideShowSpeed3 = 5000

// Duration of crossfade (seconds)
var crossFadeDuration3 = 5

// Specify the image files
var Pic3 = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic3[0] = 'images/home_img_3_1.jpg'
Pic3[1] = 'images/home_img_3_3.jpg'
Pic3[2] = 'images/home_img_3_4.jpg'
Pic3[3] = 'images/home_img_3_5.jpg'
Pic3[4] = 'images/home_img_3_6.jpg'
Pic3[5] = 'images/home_img_3_7.jpg'
Pic3[6] = 'images/home_img_3_2.jpg'
// =======================================
// do not edit anything below this line
// =======================================

var t3
var j3 = 0
var p3 = Pic.length

var preLoad3 = new Array()
for (i = 0; i < p3; i++){
   preLoad3[i] = new Image()
   preLoad3[i].src = Pic3[i]
}

function runSlideShow3(){
	//alert('running');
   if (document.all){
      document.images.SlideShow3.style.filter="blendTrans(duration=2)"
      document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration3)"
      document.images.SlideShow3.filters.blendTrans.Apply()      
   }
   document.images.SlideShow3.src = preLoad3[j3].src
   if (document.all){
      document.images.SlideShow3.filters.blendTrans.Play()
   }
   j3 = j3 + 1
   if (j3 > (p3-1)) j3=0
   t2 = setTimeout('runSlideShow3()', slideShowSpeed3)
}


