<script>

//Time of day message script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

var Digital=new Date()
var hours=Digital.getHours()

//Configure message below to your own.
if (hours>=5&&hours<=11) //MESSAGE FOR MORNING
document.write('<b>Good morning.</b>')
else if (hours>=12&&hours<=17) //MESSAGE FOR AFTERNOON
document.write('<b>Good afternoon.</b>')
else if (hours>=18&&hours<=20) //MESSAGE FOR EVENING (6pm-8pm)
document.write('<b>Good evening.</b>')
else if (hours>=21&&hours<=11) //MESSAGE FOR NIGHT (9pm-11pm)
document.write('<b>Hallo. Glad to see you this time of the night.</b>')
else //MESSAGE FOR LATE NIGHT, EARLY MORNING (12pm-4am)
document.write('<b>Hallo. Thanks for choosing to visit our site over sleep!</b>')

</script>

<p>This free script provided by
<a href="http://javascriptkit.com">JavaScript
Kit</a></p>
