// Pre-loading images
try{
var i1= new Image()             
i1.src= "b1.jpg"; 

var i2= new Image()
i2.src = "b2.jpg";

var i3 = new Image()             
i3.src = "b3.jpg"; 

var i4 = new Image()             
i4.src = "b4.jpg"; 

var i5 = new Image()             
i5.src = "b5.jpg"; 

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed2 = 3500;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration2 = 25;

var Picture2 = new Array();
var Caption2 = new Array();

//featured num:114//limit:109
// Specify the image files...
Picture2[1]  = 'b1.jpg';
Picture2[2]  = 'b2.jpg';
Picture2[3]  = 'b3.jpg';
Picture2[4]  = 'b4.jpg';
Picture2[5]  = 'b5.jpg';

// Specify the Caption2s...
Caption2[1]  = "";
Caption2[2]  = "";

var tss2;
var iss2;
var jss2 = 1;
var pss2 = Picture2.length-1;
var preLoad2 = new Array();
for (iss2 = 1; iss2 < pss2+1; iss2++){
preLoad2[iss2] = new Image();
preLoad2[iss2].src = Picture2[iss2];}

}catch(e){}

function runSlideShow2()
{
try {
if (document.all)
{
 document.images.PictureBox2.style.filter="blendTrans(duration=2)";
 document.images.PictureBox2.style.filter="blendTrans(duration=CrossFadeDuration2)";
 document.images.PictureBox2.filters.blendTrans.Apply();
}
document.images.PictureBox2.src = preLoad2[jss2].src;
//if (document.getElementById) document.getElementById("Caption2Box").innerHTML=Caption2[jss2];
if (document.all) document.images.PictureBox2.filters.blendTrans.Play();
jss2 = jss2 + 1;
if (jss2 > (pss2)) jss2=1;
tss2 = setTimeout('runSlideShow2()', SlideShowSpeed2);
}catch(e){}
}

setTimeout('runSlideShow2()', 2000);

