function timeOfDayImageA() {
var now = new Date;
var timeNow = now.getHours();
var img = null; var mess = '';
if (timeNow < 5 || timeNow > 18) {
img = 'inside1.jpg'; mess = 'Stetson Hills Branch filled with training Adult\'s';
} else {
img = 'inside2.jpg'; mess = 'Stetson HIlls Branch with Pee Wee\'s listening';
}
document.write('<img src="../graphics//'+img+'" width="215" height="161" hspace="7" vspace="5" border="1" align="left" alt="'+mess+'" title="'+mess+'" />');
}