// Time of Day Image Script
// copyright Stephen Chapman, 20th Jan 2005
// you may copy this script but please keep the copyright notice as well
function timeOfDayImage() {
var now = new Date;
var timeNow = now.getHours();
var img = null; var mess = '';
if (timeNow < 8 || timeNow > 19) {
img = '2053787.jpg'; mess = 'Basilone Executive Search and Staffing';
} else if (timeNow < 9) {
img = '3189987.jpg'; mess = 'Basilone Executive Search and Staffing';
} else if (timeNow < 11) {
img = '2053767.jpg'; mess = 'Basilone Executive Search and Staffing';
} else if (timeNow < 13) {
img = '2053787.jpg'; mess = 'Basilone Executive Search and Staffing';
} else if (timeNow < 15) {
img = '3189987.jpg'; mess = 'Basilone Executive Search and Staffing';
} else if (timeNow < 17) {
img = '2053767.jpg'; mess = 'Basilone Executive Search and Staffing';
} else {
img = '2053787.jpg'; mess = 'Basilone Executive Search and Staffing';
}
document.write('<img src="images/home-boss\/'+img+'" width="400" height="250" alt="'+mess+'" title="'+mess+'" />');
}
