
function pegarCumprimento() {
	cumprimento = '';
	hour = new Date().getHours();
	if (hour < 12) {
	   cumprimento = 'Bom Dia';
	} else if(hour >=12 && hour < 18) {
		cumprimento = 'Boa  Tarde';
	}
	else if(hour >= 18 && hour < 24) {
		cumprimento = 'Boa noite';
	}
	return cumprimento;
}

function pegarData() {
	mydate = new Date();
	year = mydate.getYear();
	if(year<1000) { year+=1900; }
	day = mydate.getDay();
	month = mydate.getMonth();
	daym = mydate.getDate();
	if(daym<10) { daym="0"+daym; }
	dayarray = new Array("Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado");
	montharray = new Array("Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro");
	return dayarray[day] + ", " + daym + " de " + montharray[month] + " de " + year;
}


$(function() {
	$('#data_cumprimento').html(pegarCumprimento() + ' - ' + pegarData());
});
