var DynText = ""Never apologize for showing feeling. When you do so you apologize for truth." - Benjamin Disraeli........ "Make the most of yourself, for that is all there is of you." - Ralph Waldo Emerson"
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;