var months=new Array(13);
months[1]="Janeiro";
months[2]="Fevereiro";
months[3]="Mar&ccedil;o";
months[4]="Abril";
months[5]="Maio";
months[6]="Junho";
months[7]="Julho";
months[8]="Agosto";
months[9]="Setembro";
months[10]="Outubro";
months[11]="Novembro";
months[12]="Dezembro";

var time=new Date();
var day=time.getDate();
var year=time.getYear();
var lmonth=months[time.getMonth() + 1];

if (year < 2000) {    // Y2K Fix, Isaac Powell
	year = year + 1900; // http://onyx.idbsu.edu/~ipowell
}

function getYear() {
	return year;
}

function getDay() {
	return day;
}

function dateStr() {
	return lmonth + " " + getDay() + ", " + getYear();
}
