//<!-- Original:  D. Keith Higgs (dkh2@po.cwru.edu) -->
//<!-- This script and many more are available free online at -->
//<!-- The JavaScript Source!! http://javascript.internet.com -->
var timeDelay = 2; // change delay time in seconds 
var Pix = new Array
("images/sonam_tn_07.jpg"  
,"images/thopden_tn_07.jpg" 
,"images/l_tenzin_tn_07.jpg" 
,"images/j_lodue_tn_07.jpg"
,"images/j_dhondup_tn_07.jpg"
,"images/namgyal_tn_07.jpg" 
,"images/t_dhondup_tn_07.jpg"
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
