<!--significantly modified, and combined, from two other scripts by Mark A. Foster, Ph.D. (part 2)
now = new Date();
t = now.getHours();

if (t<5) document.write(", on this fine late night in");

else if (t<10) document.write(", on this fine early morning in");

else if (t<12) document.write(", on this fine late morning in");
	
else if (t<15) document.write(", on this fine early afternoon in");	

else if (t<17) document.write(", on this fine late afternoon in");
	
else if (t<21) document.write(", on this fine early evening in");	

else document.write(", on this fine late evening in");

//End hiding from Neanderthal browsers-->

<!--significantly modified, and combined, from two other scripts by Mark A. Foster, Ph.D. (part 2)

var d=new Date();
var month=new Array(12);
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";

document.write(" " + month[d.getMonth()]);
//End hiding from Neanderthal browsers-->

