var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado")
var montharray=new Array("Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro")
document.write("<small><font color='666666' face='Arial'><b>"+dayarray[day]+", "+daym+" de "+montharray[month]+", "+year+" - </b></small>")


day = new Date()
hr = day.getHours()
if (hr ==1)
document.write("Bom Dia!")
if (hr ==2)
document.write("Bom Dia!")
if (hr ==3)
document.write("Bom Dia!")
if (hr ==4)
document.write("Bom Dia!")
if (hr ==5)
document.write("Bom Dia!")
if (hr ==6)
document.write("Deus ajuda quem cedo madruga!")
if ((hr ==7) || (hr ==8) || (hr == 9) || (hr ==10))
document.write("Bom Dia!")
if (hr ==11)
document.write("Bom Dia!")
if (hr ==12)
document.write("Bom Dia!")
if (hr ==13)
document.write("Boa Tarde!")
if ((hr==14) || (hr==15))
document.write("Boa Tarde!")
if (hr ==16)
document.write("Boa Tarde!")
if (hr==17)
document.write("Boa Tarde!")
if (hr==18)
document.write("Bom final de tarde!")
if ((hr==19) || (hr==20) || (hr==21) || (hr==22))
document.write("Boa Noite!")
if (hr==23)
document.write("Boa Noite!")
if (hr==0)
document.write("Boa Noite!")
