// JavaScript Document<script type="text/javascript" language="JavaScript">
	var now = new Date();
	var mName = now.getMonth() + 1;
	var dayNr = now.getDate();
	var yearNr=now.getYear();
	if(mName==1) Month = "janeiro";
	if(mName==2) Month = "fevereiro";
	if(mName==3) Month = "março";
	if(mName==4) Month = "abril";
	if(mName==5) Month = "maio";
	if(mName==6) Month = "junho";
	if(mName==7) Month = "julho";
	if(mName==8) Month = "agosto";
	if(mName==9) Month = "setembro";
	if(mName==10) Month = "outubro";
	if(mName==11) Month = "novembro";
	if(mName==12) Month = "dezembro";
	if(yearNr < 2000) Year = 1900 + yearNr;
	else Year = yearNr;
	// String to display current date.
	var todaysDate =(" " + dayNr + " de " + Month + " de " + Year);

	
	var hours = now.getHours();
	var minutes = now.getMinutes();
	var timeValue = "" + ((hours >12) ? hours -12 :hours) + "h"
	timeValue += ((minutes < 10) ? "0":"") + minutes
	timerRunning = true;
