//Criacao: Luiz Carlos Gomes Sobrinho - Portal BSB Comunicacao & Marketing

<!-- 
var d = new Date()
var h = d.getHours()

if (h < 12)
   document.write("Bom dia! ")
else
  if (h < 18)
     document.write("Boa tarde! ")
  else
     document.write("Boa noite! ")
// -->
