
///This is where we get the new date and refresh it

   mydate = new Date();

///This is where we extract the day out of the date we have just retreived

   myday = mydate.getDay();

///This is the part of the document that writes the end result and SHOULD NOT be changed

   document.write();

///This is the bit that you should change. 0=Sunday, 1=Monday, 2=Tuesday etc.
///Change the part about Soup of the Day to your own message for the day.

   if(myday == 0) document.write("Today is Sunday, Come Worship with us! </h3> ");
   else if(myday == 1) document.write("Did I see you at church yesterday? </h3> ");
   else if(myday == 2) document.write("Come join us for Bible Class tomorrow night. </h3>");
   else if(myday == 3) document.write("Today is Wednesday, Come join us for Bible Class this evening at 7:30 PM</h3>  ");
   else if(myday == 4) document.write("Just 3 more days until we meet on Sunday </h3>");
   else if(myday == 5) document.write("Just 2 more days until we meet on Sunday  </h3>");
   else if(myday == 6) document.write("Tomorrow is Sunday, Come worship with us!  </h3>");

