var loadCalendar = function(dates_func_arr,events_arr){
	
	
	
				var es_cal = new Calendar("cal_es", null, {inputType:"none",
								//formmater: function(date){									
									//if (events_arr.indexOf(""+date.getDate()) != -1) console.log(this.offset);
									//else  return date.getDate();
									//},		
								'visible': true,
								'allowWeekendSelection':true,
								'tdEvents': events_arr,
								'dateOnAvailable':dates_func_arr,
								'startDate':new Date(2007,0,1),
								'startDay':1,
								'selectedDate':new Date(),
								'weekend':[0],
								'allowWeekendSelection': true,
								'daysText':'char',
								'nexTdHTML':'<img src="/images/frontSide/rightArrowWhite.gif" />',
								'preTdHTML':'<img src="/images/frontSide/leftArrowWhite.gif" />',
								'language':{
									'days':{
										'char':['S','L','M','M','J','V','S'],
										'short':['So','Lu','Ma','Mi','Ju','Vi','Sá'],
										'mid':['Dom','Lun','Mar','Mie','Jue','Vie','Sab'],
										'long':['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado']
									},
									'months':{
										'short':['Ene','Feb','Mar','Abr','May','Jun','Jul','Ago','Sep','Oct','Nov','Dic'],
										'long':['Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre']
									},
									'am_pm':{
										'lowerCase':['am','pm'],
										'upperCase':['AM','PM']
									}
								}
								
							});	
	};	


