	
<!-- Begin
var d = new Date();
var h = d.getHours();
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (h < 2) document.write("Good Morning! Yes it is way past midnight! Today is ");
else if (h < 3) document.write("Good Morning! Up early or working late? Today is");
else if (h < 7) document.write("Good Morning! Up bright and early! Today is ");
else if (h < 12) document.write("Good Morning! Today is ");
else if (h < 17) document.write("Good Afternoon! Today is ");
else if (h < 23) document.write("Good Evening! Today is ");
else document.write("A late good evening! Not much left of it now. Today was ")
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write(lmonth + " ");
document.write(date + ", " + year);
if (h < 12) document.write('<bgsound SRC="Goodmorning.wav" AUTOSTART=true LOOP=1>'+'')
else if (h < 17) document.write('<bgsound SRC="Goodafternoon.wav" AUTOSTART=true LOOP=1>'+'')
else if (h < 23) document.write('<bgsound SRC="Goodevening.wav" AUTOSTART=true LOOP=1>'+'')
document.write('<bgsound SRC="musg.mp3" AUTOSTART=true LOOP=1>'+'')
// End -->