// 设置轮番显示速度 Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// 匀滑转换时间 Duration of crossfade (seconds)
var crossFadeDuration = 3;
// 指定图像文件 Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'left/0.jpg'
Pic[1] = 'left/1.jpg'
Pic[2] = 'left/2.jpg'
Pic[3] = 'left/3.jpg'
Pic[4] = 'left/4.jpg'
Pic[5] = 'left/5.jpg'
Pic[6] = 'left/6.jpg'
Pic[7] = 'left/7.jpg'
Pic[8] = 'left/8.jpg'
Pic[9] = 'left/9.jpg'
Pic[10] = 'left/10.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;

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 = Pic[j];
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}