//<!--
//---- ---------------------------------------------------------------
//---- File Name:		scrSiteDate.js                                  
//---- Date:			09/19/02                                     
//---- Script Author:	Emily Treganowan  
//---- Template Author:	Emily Treganowan                          	  
//---- Purpose:			Get today's date and format it                    
//---- Notes:						
//---- ---------------------------------------------------------------

<!-- 

// Array of day names
function todaysDate() {

// Array of month Names
var monthNames = new Array(
"January","February","March","April","May","June","July",
"August","September","October","November","December");

var now = new Date();
document.write(monthNames[now.getMonth()] + " " + 
now.getDate() + ", " + now.getFullYear());

}
// -->
