var urlbase = '';

$(window).load(function() {
	/*
	$('#home-agenda-calendario li.info').click(function() {
		
		$('#home-agenda-calendario li').removeClass('activo');
		
		agenda_info_clear();
		var f = $(this).attr('rel');
		$(this).addClass('activo');
		var datos = f.split('-');
		
		$.post(urlbase + "/" + idioma + "/ajax/home/agenda/destacados", { anio: datos[1], mes: datos[2], dia: datos[3] },
			function(data) {
				// process(data);
				$('#home-agenda-inferior').html(data);
			}
		);
		
	});
	*/
	
	
});

function mostrar_info(fecha) 
{
	$('#home-agenda-calendario li').removeClass('activo');
		
		agenda_info_clear();
		var f = fecha;
		
		$(this).addClass('activo');
		var datos = f.split('-');
		$.post(urlbase + "/" + idioma + "/ajax/home/agenda/destacados", { anio: datos[0], mes: datos[1], dia: datos[2] },
			function(data) {
				// process(data);
				$('#home-agenda-inferior').html(data);
			}
		);
}

function cambiar_mes(dato)
{
	var accion = dato;
	//agenda_mes_clear();
	agenda_info_clear();
		
	$.post(urlbase + "/" + idioma + "/ajax/home/agenda/diasmes", { accion: accion },
		function(data) {
			// process(data);
			$('#home-agenda-calendario').html(data);
		}
	);
}

function agenda_info_clear()
{
	$('#home-agenda-inferior').html('');
}
function agenda_mes_clear()
{
	$('#home-agenda-calendario').html('');
}
