 
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 1000
 
// Duration of crossfade (seconds)
var crossFadeDuration = 0
 
 
var Pic = new Array() 
var Pic2 = new Array()
var Pic3 = new Array()

 
Pic[0] = 'liveshow/alicia2hot4u_001.jpg'
Pic[1] = 'liveshow/alicia2hot4u_002.jpg'
Pic[2] = 'liveshow/alicia2hot4u_003.jpg'
Pic[3] = 'liveshow/alicia2hot4u_004.jpg'
 
Pic2[0] = 'liveshow/candyhot_001.jpg'
Pic2[1] = 'liveshow/candyhot_002.jpg'
Pic2[2] = 'liveshow/candyhot_003.jpg'
Pic2[3] = 'liveshow/candyhot_004.jpg'

Pic3[0] = 'liveshow/deliciousbb_001.jpg'
Pic3[1] = 'liveshow/deliciousbb_002.jpg'
Pic3[2] = 'liveshow/deliciousbb_003.jpg'
Pic3[3] = 'liveshow/deliciousbb_004.jpg'

// =======================================

 
var t
var j = 0
var p = Pic.length
 
var preLoad = new Array()
var preLoad2= new Array()
var preLoad3 = new Array()

for (i = 0; i < p; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
preLoad2[i] = new Image()
preLoad2[i].src = Pic2[i]
preLoad3[i] = new Image()
preLoad3[i].src = Pic3[i]
}
 
function runSlideShow(){

//   image 1
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[j].src
if (document.all){
document.images.SlideShow.filters.blendTrans.Play()
}

//image2
if (document.all){
document.images.SlideShow2.style.filter="blendTrans(duration=2)"
document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)"
document.images.SlideShow2.filters.blendTrans.Apply()
}
document.images.SlideShow2.src = preLoad2[j].src
if (document.all){
document.images.SlideShow2.filters.blendTrans.Play()
}

//image3
if (document.all){
document.images.SlideShow3.style.filter="blendTrans(duration=2)"
document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)"
document.images.SlideShow3.filters.blendTrans.Apply()
}
document.images.SlideShow3.src = preLoad3[j].src
if (document.all){
document.images.SlideShow3.filters.blendTrans.Play()
}

j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow()', slideShowSpeed)
}