var DynText = ""It is curious - curious that physical courage should be so common in the world, and moral courage so rare." - Mark Twain"
var NewsText="
"
var Counter1 = 0;
var NewPic = new Array();
NewPic[0]="images/rotate1.jpg";
NewPic[1]="images/rotate2.jpg";
NewPic[2]="images/rotate3.jpg";
var Counter2 = NewPic.length;
function RotatePic() {
Counter1++;
if (Counter1 == Counter2) {
Counter1 = 0;
}
document.banner.src=NewPic[Counter1];
setTimeout("RotatePic()", 6*1000);
}
window.onload=RotatePic;