var sectionID = 0;

$(function () {
    //Crear el menu
    $.ajax({
        type: 'POST',
        url: 'services/services/contents.php',
        data: {
            ACTION: "CHILDREN",
            PARENT_UUID: 131
        },
        dataType: 'json',
        success: function(data) {
            if (typeof data[0] == 'object') {
                $("#empresa_text").html(data[1].spanish_text);
                $("#servicios_text").html(data[2].spanish_text);
                $("#noticias_text").html(data[3].spanish_text);
            }
        },
        error: function(){
            jAlert ("Error en la comunicación con el servidor.", "Premex");
        }
    });
});

