<!-- Hiding
today = new Date()
if(today.getMinutes() < 10)   
pad =":0";
else
pad=":";
if((today.getHours() < 12) && (today.getHours() >= 6))
	{document.write("Bom Dia...")}
if((today.getHours() >= 12) && (today.getHours() < 18))
	{document.write("Boa Tarde...")}
if((today.getHours() >= 18) && (today.getHours() <= 23))
	{document.write("Boa Noite...")}
if((today.getHours() >= 0) && (today.getHours() < 4))
{document.write("Boa Madrugada...")}
if((today.getHours() >= 4) && (today.getHours() <= 5))
{document.write("Boa Madrugada...")} 
// end hiding contents 
//-->