var images = new Array();

images[0] = "/wc.nsf/engage.gif";
images[1] = "/wc.nsf/indispensable.gif";
images[2] = "/wc.nsf/powerful.gif";

function ShowImg() {
var number = images.length;
var increment = Math.floor(Math.random() * number);
var strTemp ='<img src="' + images[increment] + '" width="253" height="385">';
document.write(strTemp);
}

var rotate = 5000;
var count = 0;

function RotateImg(myImage){
 myImage.src=images[count];
 count++;
 if(count==images.length){count = 0;}
 setTimeout("RotateImg(myImage)",rotate);
}
