<!-- Begin
d = new Array(
"Sun",
"Mon",
"Tues",
"Wed",
"Thurs",
"Fri",
"Sat"
);
m = new Array(
"Jan",
"Feb",
"Mar",
"April",
"May",
"June",
"July",
"Aug",
"Sept",
"Oct",
"Nov",
"Dec"
);

today = new Date();
day = today.getDate();
year = today.getYear();

if (year < 2000)
year = year + 1900;

end = "th";
if (day==1 || day==21 || day==31) end="st";
if (day==2 || day==22) end="nd";
if (day==3 || day==23) end="rd";
day+=end;

//document.write("<font face='Book Antiqua', 'arial black', 'Times new roman' color=black size=4>");
//document.write(d[today.getDay()]+", "+m[today.getMonth()]+" ");
//document.write(day+", " + year);
//document.write("</font>");

var dte = (d[today.getDay()]+", "+m[today.getMonth()]+" "+day+", "+year)

Message = new Array(4);
Message[0]="<h1><br>The past lives in us, not we in the past.<br>....David Ben-Gurion<br><br>";
Message[1]="<h1>All those things which are now held to be of greatest antiquity, were at one time new; and what we today hold up by example,will rank hereafter as a precedent.<br>....Tacitus, 55-120 AD";
Message[2]="<h1><br>Every man of us has all the centuries in him.<br>....John Morely<br><br>";
Message[3]="<h1><br>" + dte + "<br><br><br>";

var nCount = 0;
function rotateSpan1() 
{		
	Span1.innerHTML=Message[nCount];
	nCount++;
	if(nCount>Message.length-1) nCount=0;	
	setTimeout("rotateSpan1()",7500);
}
function showSpan1(obj)
{  
   Span1.innerHTML=obj
}
// End -->