<!-- Begin
//Inicio da função saudação!
function saudacao(){
	var today = new Date();
	var hrs = today.getHours();
	if (hrs < 5)
	document.write("Boa noite! Hoje é ");
	else if (hrs < 12)
		document.write("Bom dia! Hoje é ");
		else if (hrs < 18)
			document.write("Boa tarde! Hoje é ");
			else
			document.write("Boa noite! Hoje é ");
	
}
//Fim da função saudação!
//Inicio da Programação da data!
	var nome_dia = new Array ('Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado');
	var nome_mes = new Array ('Janeiro','Fevereiro','Março','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro');

function data_por_extenso(hoje)
{
	var dia = nome_dia[hoje.getDay()];
	var dia_do_mes=hoje.getDate();
	var mes = nome_mes[hoje.getMonth()];
	var ano = hoje.getYear();
if (ano < 200) 
	{var ano = ano + 1900};
	var xyz = dia + ', ' + dia_do_mes + ' de ' + mes + ' de ' + ano; 
	return xyz;
}
//Fim da Programação da data!
// -->