/*
 ___________________________________
/ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ\
| 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('<bgsound SRC="sounds/Goodmorning.wav" AUTOSTART=true LOOP=1>'+'Good morning!')
else if (h < 17) document.write('<bgsound SRC="sounds/Goodafternoon.wav" AUTOSTART=true LOOP=1>'+'Good afternoon!')
else if (h < 24) document.write('<bgsound SRC="sounds/Goodevening.wav" AUTOSTART=true LOOP=1>'+'Good evening!')
