function timeOfDayImage() {
var now = new Date;
var timeNow = now.getHours();
var img = null; var mess = '';
if (timeNow < 5 || timeNow > 18) {
img = 'out1.jpg'; mess = 'Stetson Hills Branch as it looks at night';
} else {
img = 'out2.jpg'; mess = 'Stetson HIlls Branch as it looks during the day';
}
document.write('<img src="../graphics//'+img+'" width="215" height="161" hspace="7" vspace="5" border="1" align="right" alt="'+mess+'" title="'+mess+'" />');
}