// JavaScript Document
function textos(){
	this.textErrorSelectPais 	 	= 'Please, select country and zone';
	this.textErrorSelectZona 	 	= 'Please, select zone';
	this.textErrorRangoInvalido 	= 'Please check your dates';
	this.textErrorSalidaInvalida  	= 'Check you departure date';
	this.textErrorLlegadaInvalida 	= 'Check you arrival date';
	this.months 					= Array('Jan','Feb','Mar','Apr','Mar','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
	this.monthsNames 				= Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
	this.weekShort 					= Array("S", "M", "M", "M", "J", "V", "S");
	this.weekShort2 				= Array("Su", "Mo", "Tu", "We", "Th", "Fr", "Sa");
	this.weekShort3					= Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
	this.weekLong 					= Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
	this.startWeekDay				= 0;
	this.llegada					= 'Arrival:';
	this.salida						= 'Departure:';
	this.destino					= 'Destination:';
	this.adultos 					= 'Adults:';
	this.ninos						= 'Children (2-17):';
	this.bebes						= 'Infants (<2):';
	this.buscar						= 'Search';
	this.selectDiaLlegada 			= 'Arrival day';
	this.selectDiaSalida 			= 'Departure day';
	this.nRooms						= 'Nº of rooms';
	this.zonas						= '- Zone -';
	this.ciudades					= '- City/Town -';
}