<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var Today=new Date();
var ThisDay=Today.getDay();
var ThisDate=Today.getDate();
var ThisMonth=Today.getMonth()+1;
var ThisYear=Today.getFullYear();  //included if you wish to insert the year
function DayTxt (DayNumber) {
var Day=new Array();
Day[0]="Sunday";
Day[1]="Monday";
Day[2]="Tuesday";
Day[3]="Wednesday";
Day[4]="Thursday";
Day[5]="Friday";
Day[6]="Saturday";
return Day[DayNumber];
}
var DayName=DayTxt(ThisDay);
function MonthTxt (MonthNumber) {
var Month=new Array();
Month[1]="January";
Month[2]="February";
Month[3]="March";
Month[4]="April";
Month[5]="May";
Month[6]="June";
Month[7]="July";
Month[8]="August";
Month[9]="September";
Month[10]="October";
Month[11]="November";
Month[12]="December";
return Month[MonthNumber];
}
var MonthName=MonthTxt(ThisMonth);
var d = new Date();

var h = d.getHours();
document.write("<table border=1 cellpadding=4><tr><TD align=center>");

if (h < 2) document.write("<img src=\"http://www.geaugaweb.com/coop/audio/audio.jpg\" width=200 height=100><br><embed src=\"http://www.geaugaweb.com/coop/audio/audio.mp3\" autostart=\"0\" width=\"200\" height=\"30\">");

else if (h < 3) document.write("<img src=\"http://www.geaugaweb.com/coop/audio/audio.jpg\" width=200 height=100><br><embed src=\"http://www.geaugaweb.com/coop/audio/audio.mp3\" autostart=\"0\" width=\"200\" height=\"30\">");

else if (h < 7) document.write("<img src=\"http://www.geaugaweb.com/coop/audio/audio.jpg\" width=200 height=100><br><embed src=\"http://www.geaugaweb.com/coop/audio/audio.mp3\" autostart=\"0\" width=\"200\" height=\"30\">");

else if (h < 12) document.write("<img src=\"http://www.geaugaweb.com/coop/audio/audio.jpg\" width=200 height=100><br><embed src=\"http://www.geaugaweb.com/coop/audio/audio.mp3\" autostart=\"0\" width=\"200\" height=\"30\">");

else if (h < 17) document.write("<img src=\"http://www.geaugaweb.com/coop/audio/audio.jpg\"><br><embed src=\"http://www.geaugaweb.com/coop/audio/audio.mp3\" autostart=\"0\" width=\"200\" height=\"30\">");

else if (h < 23) document.write("<img src=\"http://www.geaugaweb.com/coop/audio/audio.jpg\" width=200 height=100><br><embed src=\"http://www.geaugaweb.com/coop/audio/audio.mp3\" autostart=\"0\" width=\"200\" height=\"30\">");

else document.write("<img src=\"http://www.geaugaweb.com/coop/audio/audio.jpg\" width=200 height=100><br><embed src=\"http://www.geaugaweb.com/coop/audio/audio.mp3\" autostart=\"0\" width=\"200\" height=\"30\">");

document.write("</td></tr></table>");