function timeOfDayImage() {
var now = new Date;
var timeNow = now.getHours();
var img = null; var mess = '';
if (timeNow > 8 && timeNow < 20) {
img = 'junk-car-price-phone-number.gif'; mess = 'Junk Car Price';
}  else {
img ='line-break.jpg'; mess= 'Junk Car Price';
}
document.write('<p style="text-align: center;"><img src="/wp-content/uploads/2011/11\/'+img+'" alt="'+mess+'" title="'+mess+'" /></p>');
}

