// DATE/TIME WELCOME MESSSAGE

var now = new Date();
var hours = now.getHours();
var greeting = "";
if (hours <= 24) { greeting = "Good evening"; }
if (hours <= 17) { greeting = "Good afternoon"; }
if (hours <= 11) { greeting = "Good morning"; }
if (hours <= 02) { greeting = "Good evening"; }
 
 
var theDays = new Array();
theDays[0]="Sunday";
theDays[1]="Monday";
theDays[2]="Tuesday";
theDays[3]="Wednesday";
theDays[4]="Thursday";
theDays[5]="Friday";
theDays[6]="Saturday";
 
 
var theMonths = new Array();
theMonths[0]="January";
theMonths[1]="February";
theMonths[2]="March";
theMonths[3]="April";
theMonths[4]="May";
theMonths[5]="June";
theMonths[6]="July";
theMonths[7]="August";
theMonths[8]="September";
theMonths[9]="October";
theMonths[10]="November";
theMonths[11]="December";
 
    var theyear = now.getFullYear();
    var themonth = now.getMonth();
    var thedate = now.getDate();
    var theday = now.getDay();
    
    var theLongDate = theDays[theday] + ", ";
    theLongDate += thedate + " " + theMonths[themonth];
    theLongDate += ", " + theyear;

