function presentacion() {};


/**********************************************************************************
FUNCIÓN INICIALIZAR ENLACES
**********************************************************************************/
presentacion.inicializar = function() {
}



presentacion.ver_presentacion = function(accion) {
	cadena = "./base/index.php?controlador=presentacion&accion="+accion;
	$.ajax({
		url: cadena,
		type: "POST",
		cache: false,
		error: function (xhr, ajaxOptions, thrownError){
			if (xhr.status == 403)  alert("Error del servidor");
			return;
        } ,
		success: function(html){
			
			$("#contenedor_presentacion").html(html);
			presentacion.inicializar();			
	 	}
	});
}


