<!--// Image Rotation Javascript
PhotoArray = new Array (3); // This must match the total number of images to be rotated
PhotoArray[0] = "/images/indexpics/k_pic2.jpg"; 
PhotoArray[1] = "/images/indexpics/e_pic2.jpg";
PhotoArray[2] = "/images/indexpics/ehol_pic2.jpg";

current_banner=0;
banner=PhotoArray.length;
function CycleImage() {
if (current_banner==banner) {
current_banner=0;
}
document.intImg.src=PhotoArray[current_banner];
current_banner ++;
setTimeout("CycleImage()", 3*1000);
}
// End -->