/*
 ___________________________________
/ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ\
| Another JavaScript from Uncle Jim |
|                                   |
| Feel free to use this script as   |
| long as this part stays unchanged |
|                                   |
|  Visit www.jdstiles.com for more  |
|Javascripts like this one.  Thanks.|
|   Created: 1996  Updated: 2006    |
|                                   |
\___________________________________/
 ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ
*/
var d = new Date()
var h = d.getHours()

//You can record your own audio greeting and customize the greeting time and message
if (h < 12) document.write('<img src="images/morning.jpg">')
else if (h < 17) document.write('<img src="images/afternoon.jpg">')
else if (h < 24) document.write('<img src="images/evening.jpg">')
