| $("#fullConfig").hide();
$("#hideConfig").hide();
function showFullConfig() {
    $("#fullConfig").show(200);
    $("#hideConfig").show(200);
    $("#showConfig").hide(200);
}
function hideFullConfig() {
    $("#fullConfig").hide(200);
    $("#hideConfig").hide(200);
    $("#showConfig").show(200);
}
{% include "js/cabins.js.twig" %}
 |