var timeDelay = 4; // change delay time in seconds
var Pix = new Array
("images/top/top_headbanner_lotuslounge.jpg" 
,"images/top/top_headbanner_zenrooms.jpg" 
,"images/top/top_headbanner_fridaygalaxy.jpg"
,"images/top/top_headbanner_galaxy.jpg"
,"images/top/top_headbanner_zendeck.jpg"
,"images/top/top_headbanner_rainbow.jpg"
,"images/top/top_headbanner_satnites.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;
}