/*
Extended class Date
By Marcelo Disconzi - Dataview
12/03/09
*/

function ExtendedDate(d)
{
	this.d = d;
	this.week = ['Domingo','Segunda','Terça','Quarta','Quinta','Sexta','Sábado'];
	this.month = ['Janeiro','Fevereiro','Março','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'];
	
	this.getDayName = function(){return this.week[this.d.getDay()];}
	this.getDayNameAbrev = function(){return this.week[this.d.getDay()].substr(0,3);}
	this.getMonthName = function(){return this.month[this.d.getMonth()];}
	this.getMonthNameAbrev = function(){return this.month[this.d.getMonth()].substr(0,3);}
	

}
