dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

now = new Date();
now.setTime(now.getTime() + (now.getTimezoneOffset() - 240) * 60000);

document.write("Today is " + dayName[now.getDay()] + ", " + monName[now.getMonth()] + " " + now.getDate() + ". ");

if (now.getDay() == 0 && now.getHours() < 19) {
 document.write('<span class="highlight">Practice today at 5 PM!<\/span>')
}
if (now.getDay() == 3 && now.getHours() < 24) {
 document.write('<span class="highlight">Practice tonight at 10 PM!<\/span>')
}
if (now.getDay() == 5 && now.getHours() < 23) {
 document.write('<span class="highlight">Practice tonight at 8:30 PM!<\/span>')
}


/*
Practice today at 5 PM!
Practice today at 3 PM!
Practice tonight at 9:30 PM!
Practice cancelled today.
Practice cancelled tonight.
*/
