<!---
now = new Date()
month = now.getMonth()
day = now.getDate()
dow = now.getDay()
year = now.getYear()
hrs = now.getHours()
mins = now.getMinutes()
today = now.getDay()
var months=new 

Array('Jan.','Feb.','Mar.','April','May','June','July','Aug.','Sept.','Oct.','Nov.','Dec.')
var days=new
Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday' )
mo = months[month]
dd = days[dow]

if ( year < 1900 )
{
year = year + 1900 
}
//document.write("<span class='day'>" +dd+ "</span><br>");
document.write("<span class='date'>" +mo+' '+day+', '+year+ "</span>");
//-->
