
function displayDate(){
			    var this_month = new Array(12);
			    this_month[0]  = "Janeiro";
			    this_month[1]  = "Fevereiro";
			    this_month[2]  = "Março";
			    this_month[3]  = "Abril";
			    this_month[4]  = "Maio";
			    this_month[5]  = "Junho";
			    this_month[6]  = "Julho";
			    this_month[7]  = "Agosto";
			    this_month[8]  = "Setembro";
			    this_month[9]  = "Outubro";
			    this_month[10] = "Novembro";
			    this_month[11] = "Dezembro";
			    var today = new Date();
			    var day   = today.getDate();
			    var month = today.getMonth();
			    var year  = today.getYear();
			    if (year < 1900){
			        year += 1900;
				    }
		    return("Rio, "+day+" de "+this_month[month]+" de " +year);
			}