<!--
// (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 SlideShow5Speed (milliseconds)
var SlideShow5Speed = 4500

// Duration of crossfade (seconds)
var crossFadeDuration5 = 1

// Specify the image files
// =======================================
// Duplicate This Part For New Slice

var Pic5 = new Array() // don't touch this

Pic5[0] = 'splash/1R_1.jpg'
Pic5[1] = 'splash/1R_2.jpg'
Pic5[2] = 'splash/1R_3.jpg'

// =======================================
// do not edit anything below this line
// =======================================

var t5
var j5 = 0
var p5 = Pic5.length

var preLoad5 = new Array()
for (i5 = 0; i5 < p5; i5++){
preLoad5[i5] = new Image()
preLoad5[i5].src = Pic5[i5]
}

function runSlideShow5(){
if (document.all){
document.images.SlideShow5.style.filter="blendTrans(duration=2)"
document.images.SlideShow5.style.filter="blendTrans(duration=crossFadeDuration5)"
document.images.SlideShow5.filters.blendTrans.Apply() 
}
document.images.SlideShow5.src = preLoad5[j5].src
if (document.all){
document.images.SlideShow5.filters.blendTrans.Play()
}
j5 = j5 + 1
if (j5 > (p5-1)) j5=0
t5 = setTimeout('runSlideShow5()', SlideShow5Speed)

}
//-->