/*
 * $Id$
 * $LastChangedDate$
 * $LastChangedRevision$
 * $LastChangedBy$
 * $HeadURL$
 *
 * This software is the confidential and proprietary information of
 * NAYADE GROUP SOLUTIONS, S.L. ("Confidential Information").
 * You shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement you
 * made with the owners. Permission to use, copy, modify, distribute, 
 * and sell this software and its documentation is subject to license terms.
 *
 * NAYADE MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
 * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 * PURPOSE, OR NON-INFRINGEMENT. NAYADE SHALL NOT BE LIABLE FOR ANY DAMAGES
 * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
 * THIS SOFTWARE OR ITS DERIVATIVES.
 */

function DateUtils(){
};//DateUtils

DateUtils.prototype.getCurrentDateString = function() {
	
		var currentDate = new Date();
		var currentDateString = new Array();
		currentDateString.push( this._weekDays_es[ currentDate.getDay() ], ", " );
		currentDateString.push( currentDate.getDate(), " de " );
		currentDateString.push( this._months_es[ currentDate.getMonth() ], " de " );
		currentDateString.push( currentDate.getFullYear() );
		return currentDateString.join( '' );
};//getCurrentDateString


DateUtils.prototype._weekDays_es = new Array( 
	"Domingo", 
	"Lunes", 
	"Martes", 
	"Mi&eacute;rcoles", 
	"Jueves", 
	"Viernes",
	"S&aacute;bado"
);//_weekDays_es

DateUtils.prototype._months_es = new Array( 
	"Enero", 
	"Febrero", 
	"Marzo", 
	"Abril", 
	"Mayo", 
	"Junio",
	"Julio", 
	"Agosto", 
	"Septiembre", 
	"Octubre", 
	"Noviembre", 
	"Diciembre"
);//_months_es


