<!-- 
var strDate = new Date()
var strHour = strDate.getHours()

if (strHour < 12)
{
	document.write("<span style='font-size:8pt; font-weight=bold; font-family=arial; color:#f47b4d'>- Bom dia!</span>")
}
else
{
	if (strHour < 18)
	{
		document.write("<span style='font-size:8pt; font-family=arial; font-weight=bold; color:#000066'>- Boa tarde!</span>")
	}
	else
	{
		document.write("<span style='font-size:8pt; font-weight=bold; font-family=arial; color:#eb190b'>- Boa noite!</span>")
	}
}
// -->
