// Script written and Copyright © 2000-2005 thepageofstuff.com
// Do not use without permission
// Last modified 12/08/05

now= new Date();
m= new Array("January","February","March","April","May","June","July","August","September","October","November","December");
document.write(m[now.getMonth()] + " " + now.getDate() + ", "  + now.getFullYear());

if ( m[now.getMonth()] == "January" && now.getDate() == "1" ) {
document.write('<br>Happy New Year!');}

else if ( m[now.getMonth()] == "April" && now.getDate() == "1" ) {
document.write('<br>Happy April Fool\'s Day!');}

else if ( m[now.getMonth()] == "June" && now.getDate() == "23" ) {
document.write('<br>Happy Birthday, Sonic!');}

else if ( m[now.getMonth()] == "July" && now.getDate() == "7" ) {
document.write('<br>Happy Birthday to me!');}

else if ( m[now.getMonth()] == "December" && now.getDate() == "25" ) {
document.write('<br>Merry Christmas!');
document.write('<script language=\"JavaScript\" src=\"http://www.thepageofstuff.com/scripts/snow.js\" type=\"text/javascript\"></script>');
}
