﻿var MONTH_ARRAY = new Array( "January" , "February" , "March" , "April" , "May" , "June" , "July" , "August" , "September" , "October" , "November" , "December" );
var DAYS_ARRAY = new Array( "Sunday" , "Monday" , "Tuesday" , "Wednesday" , "Thursday" , "Friday" , "Saturday" );
var DAYSUFFIX_ARRAY = new Array(
	"" , "st" , "nd" , "rd" , "th" , "th" , "th" , "th" , "th" , "th" , "th", "th" , "th" , "th" , "th" , "th" , "th" , "th" , "th" , "th" , "th" , "st" , "nd" , "rd" , "th" , "th" , "th" , "th" , "th" , "th" , "th" , "st"
);

function writeToday() {
 var thisDateObject = new Date();
 var thisDate = thisDateObject.getDate();
 var thisDayIndex = thisDateObject.getDay();
 var thisDay = DAYS_ARRAY[ thisDayIndex ];
 var thisMonth = MONTH_ARRAY[ thisDateObject.getMonth() ];
 var thisDateSuffix = DAYSUFFIX_ARRAY[ thisDate ];
 
 var dateString = "<div>"+thisDay + ", " + thisMonth + " " + thisDate + thisDateSuffix+"</div>";

 document.write( dateString );
}


window.onload = function(){
    var text_input = document.getElementById('loginusername');
    text_input.focus ();
}
