
meses= new Array("jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez")
	diasSemana= new Array("Dom","Seg","Ter","Qua","Qui","Sex","Sáb")
	hoje=new Date()
	data= diasSemana[hoje.getDay()] + ', ' + hoje.getDate() + ' de ' + meses[hoje.getMonth()] + ' de ' + hoje.getFullYear();
	
	if (hoje.getMinutes()<10){		
		minutos='0' + hoje.getMinutes();
	}else{
		minutos=hoje.getMinutes();
	}
	if (hoje.getHours()<10){
		ashoras='0' + hoje.getHours();		
	}else{
		ashoras=hoje.getHours();
	}
	
	horas= ashoras + ':' + minutos;
	

// JavaScript Document
