// image cycler

var timeDelay1 = 5.3; // change delay time in seconds
var Pix1 = new Array
("images/photos/netadmin5.jpg" 
,"images/photos/netadmin5.jpg"
,"images/photos/analyst6.jpg" 
,"images/photos/analyst6.jpg" 
,"images/photos/netadmin4.jpg"
,"images/photos/netadmin4.jpg"
,"images/photos/analyst6.jpg" 
,"images/photos/netadmin5.jpg"
,"images/photos/netadmin4.jpg"
,"images/photos/netadmin4.jpg"
);
var howMany1 = Pix1.length;
timeDelay1 *= 1000;
var PicCurrentNum1 = 0;
var PicCurrent1 = new Image();
PicCurrent1.src = Pix1[PicCurrentNum1];

function startPix1() {
setInterval("slideshow1()", timeDelay1);
}
function slideshow1() {
PicCurrentNum1++;
if (PicCurrentNum1 == howMany1) {
PicCurrentNum1 = 0;
}
PicCurrent1.src = Pix1[PicCurrentNum1];
document["dynphoto1"].src = PicCurrent1.src;

}

var timeDelay2 = 9; // change delay time in seconds
var Pix2 = new Array
("images/photos/analyst2.jpg" 
,"images/photos/netadmin2.jpg" 
,"images/photos/analyst5.jpg"
,"images/photos/analyst2.jpg" 
,"images/photos/netadmin2.jpg" 
,"images/photos/analyst5.jpg"
,"images/photos/analyst5.jpg"
,"images/photos/analyst2.jpg" 
,"images/photos/netadmin2.jpg"
);

var howMany2 = Pix2.length;
timeDelay2 *= 1000;
var PicCurrentNum2 = 0;
var PicCurrent2 = new Image();
PicCurrent2.src = Pix2[PicCurrentNum2];

function startPix2() {
setInterval("slideshow2()", timeDelay2);
}
function slideshow2() {
PicCurrentNum2++;
if (PicCurrentNum2 == howMany2) {
PicCurrentNum2 = 0;
}
PicCurrent2.src = Pix2[PicCurrentNum2];
document["dynphoto2"].src = PicCurrent2.src;

}

var timeDelay3 = 6.78; // change delay time in seconds
var Pix3 = new Array
("images/photos/analyst1.jpg" 
,"images/photos/analyst3.jpg" 
,"images/photos/analyst4.jpg"
,"images/photos/analyst1.jpg" 
,"images/photos/analyst1.jpg"
,"images/photos/analyst3.jpg" 
,"images/photos/analyst3.jpg" 
,"images/photos/analyst4.jpg"
,"images/photos/analyst1.jpg" 
,"images/photos/analyst1.jpg" 
,"images/photos/analyst3.jpg"
,"images/photos/analyst4.jpg"
);
var howMany3 = Pix3.length;
timeDelay3 *= 1000;
var PicCurrentNum3 = 0;
var PicCurrent3 = new Image();
PicCurrent3.src = Pix3[PicCurrentNum3];

function startPix3() {
setInterval("slideshow3()", timeDelay3);
}
function slideshow3() {
PicCurrentNum3++;
if (PicCurrentNum3 == howMany3) {
PicCurrentNum3 = 0;
}
PicCurrent3.src = Pix3[PicCurrentNum3];
document["dynphoto3"].src = PicCurrent3.src;

}


var timeDelay4 = 11; // change delay time in seconds
var Pix4 = new Array
("images/photos/netadmin3.jpg" 
,"images/photos/netadmin6.jpg" 
,"images/photos/netadmin1.jpg"
,"images/photos/netadmin6.jpg" 
,"images/photos/netadmin3.jpg"
,"images/photos/netadmin1.jpg" 
);
var howMany4 = Pix4.length;
timeDelay4 *= 1000;
var PicCurrentNum4 = 0;
var PicCurrent4 = new Image();
PicCurrent4.src = Pix4[PicCurrentNum4];

function startPix4() {
setInterval("slideshow4()", timeDelay4);
}
function slideshow4() {
PicCurrentNum4++;
if (PicCurrentNum4 == howMany4) {
PicCurrentNum4 = 0;
}
PicCurrent4.src = Pix4[PicCurrentNum4];
document["dynphoto4"].src = PicCurrent4.src;
}
//  End -->