

//You will receive a different greeting based
//on what day it is. Note that Sunday=0,
//Monday=1, Tuesday=2, etc.

var d=new Date()
theDay=d.getDay()
switch (theDay)
{

case 1:
document.write("Another Monday")
break
case 2:
document.write("Tuesdays are good")
break
case 3:
document.write("Today is Wednesday - halfway through the week")
break
case 4:
document.write("It's almost Friday")
break
case 6:
document.write("It's Saturday")
break
case 0:
document.write("It's Sunday - play with your kids, talk to your mom and dad")
break
default:
document.write("It's Friday - looking forward to this weekend!")
}


