// Time of Day Image Script
// copyright Stephen Chapman, 20th Jan 2005
// you may copy this script but please keep the copyright notice as well
//document.write('<img src="graphics\/'+img+'" width="200" height="80" alt="'+mess+'" title="'+mess+'" />');
startBanner =function timeOfDayImage() {
var now = new Date;
var timeNow = now.getHours();
var img = null; var mess = '';
if (timeNow < 4 || timeNow > 20) {
img ='images/banners/ocean2.jpg'; mess = 'nighttime';
}
else if (timeNow < 7) {
img ='images/banners/ocean1.jpg'; mess = 'sunrise';
}
else if (timeNow < 17) {
img ='images/banners/ocean.jpg'; mess = 'daytime';
}
else {
img ='images/banners/ocean1.jpg'; mess = 'sunset';
}
document.write('<img src="'+img+'" width="783" height="185" alt="'+mess+'" title="'+mess+'" />');
}
window.onload=startBanner;
