// JavaScript Document


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

if (hours>=5&&hours<=11) //MESSAGE FOR MORNING
document.write('<b>Good morning, welcome to Taste Media</b>')
else if (hours==12) //MESSAGE FOR NOON
document.write('<b>Good afternoon, welcome to Taste Media</b>')
else if (hours>=13&&hours<=17) //MESSAGE FOR AFTERNOON
document.write('<b>Good afternoon, welcome to Taste Media</b>')
else if (hours>=18&&hours<=20) //MESSAGE FOR EVENING (6pm-8pm)
document.write('<b>Good evening, welcome to Taste Media</b>')
else if (hours>=21&&hours<=11) //MESSAGE FOR NIGHT (9pm-11pm)
document.write('<b>Good evening, welcome to Taste Media</b>')
else //MESSAGE FOR LATE NIGHT, EARLY MORNING (12pm-4am)
document.write('<b>Good morning, welcome to Taste Media</b>')