// JavaScript Document
<!-- handles quotes for Chinese Testimonials -->

<!-- Begin
var timeDelay2 = 6; // change delay time in seconds 
var Pixcn = new Array
("images/quote3-1-j.gif" 
,"images/quote3-2-j.gif"
,"images/quote3-3-j.gif"  
);
var howMany2 = Pixcn.length;
timeDelay2 *= 1000;
var PicCurrentNum2 = 0;
var PicCurrent2 = new Image();
PicCurrent2.src = Pixcn[PicCurrentNum2];
function startPixcn() {
setInterval("slideshow2()", timeDelay2);
}
function slideshow2() {
PicCurrentNum2++;
if (PicCurrentNum2 == howMany2) {
PicCurrentNum2 = 0;
}
PicCurrent2.src = Pixcn[PicCurrentNum2];
document["ChangingPix2"].src = PicCurrent2.src;
}
//  End -->