// 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 < 6 || timeNow > 17) {
		img = 'dealership-night.jpg'; mess = 'John Roberts Toyota at Night - Manchester, Tennessee';
	} else {
		img = 'dealership-day.jpg'; mess = 'John Roberts Toyota Dealership - Manchester, Tennessee';
	}
	document.write('<img src="\/sitespecific\/RobertsToyotaTN\/hpContent\/'+img+'" width="960" height="362" alt="'+mess+'"title="'+mess+'" />');
}
