var d = new Date()
var h = d.getHours()

if (h < 8) document.write('<img src="/images/hdestination_sunrise.gif" alt="sunrise" title="Navigate through our site">')
else if (h < 12) document.write('<img src="/images/hdestination_morning.gif" alt="morning" title="Navigate through our site">')
else if (h < 16) document.write('<img src="/images/hdestination_afternoon.gif" alt="afternoon" title="Navigate through our site">')
else if (h < 18) document.write('<img src="/images/hdestination_sunset.gif" alt="sunset" title="Navigate through our site">')
else if (h < 23) document.write('<img src="/images/hdestination_night.gif" alt="night" title="Navigate through our site">')
else if (h  < 5 || h > 23) document.write('<img src="/images/hdestination_latenight.gif" alt="late night" title="Navigate through our site">')

