	
			function SetNameArray(item)
				{
				this.length = item
				return this
				}
				Month = new SetNameArray(12)
				Month[1] = "janeiro"
				Month[2] = "fevereiro"
				Month[3] = "mar&ccedil;o"
				Month[4] = "abril"
				Month[5] = "maio"
				Month[6] = "junho"
				Month[7] = "julho"
				Month[8] = "agosto"
				Month[9] = "setembro"
				Month[10] = "outubro"
				Month[11] = "novembro"
				Month[12] = "dezembro"
			
				WeekDay = new SetNameArray(7)
				WeekDay[1] = "domingo"
				WeekDay[2] = "segunda-feira"
				WeekDay[3] = "ter&ccedil;a-feira"
				WeekDay[4] = "quarta-feira"
				WeekDay[5] = "quinta-feira"
				WeekDay[6] = "sexta-feira"
				WeekDay[7] = "s&aacute;bado"
			
				theDate = new Date()
				var theWeekDay = WeekDay[theDate.getDay() + 1]
				var theMonth = Month[theDate.getMonth() + 1]
				var theYear = theDate.getYear() + 1900
				if (theYear>3000)
					theYear=theYear-1900;
