// JavaScript Document
// 设置轮番显示速度 Set slideShowSpeed (milliseconds)
var slideShowSpeed_B = 7000;
// 匀滑转换时间 Duration of crossfade (seconds)
var crossFadeDuration_B = 3;
// 指定图像文件 Specify the image files
var Pic_B = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic_B[0] = 'images/islamcn_yujiaxin_index_r2_c1_0.jpg'
Pic_B[1] = 'images/islamcn_yujiaxin_index_r2_c1_1.jpg'
Pic_B[2] = 'images/islamcn_yujiaxin_index_r2_c1_2.jpg'

// do not edit anything below this line
var tt;
var jj = 0;
var pp = Pic_B.length;
var preLoad_B = new Array();
for (i = 0; i < pp; i++) {
preLoad_B[i] = new Image();
preLoad_B[i].src = Pic_B[i];
}
function runSlideShow_B() {
if (document.all) {
document.images.SlideShow_B.style.filter="blendTrans(duration=2)";
document.images.SlideShow_B.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow_B.filters.blendTrans.Apply();
}
document.images.SlideShow_B.src = preLoad_B[jj].src;
if (document.all) {
document.images.SlideShow_B.filters.blendTrans.Play();
}
jj = jj + 1;
if (jj > (pp - 1)) jj = 0;
tt = setTimeout('runSlideShow_B()', slideShowSpeed_B);
}

