function empresaloaded() {
    var fotos = new Array();
    fotos[1] = new Image();
    fotos[1].src = "../img/oficines1.jpg";
    fotos[2] = new Image();
    fotos[2].src = "../img/oficines2.jpg";
    fotos[3] = new Image();
    fotos[3].src = "../img/oficines3.jpg";
    fotos[4] = new Image();
    fotos[4].src = "../img/oficines4.jpg";
    fotos[5] = new Image();
    fotos[5].src = "../img/oficines5.jpg";
    fotos[6] = new Image();
    fotos[6].src = "../img/oficines6.jpg";
}

function swap_e(num) {
    document.getElementById('foto').src = "../img/oficines" + num + ".jpg";
}

function activitatloaded() {
    var fotos = new Array();
    fotos[1] = new Image();
    fotos[1].src = "../img/activitat1.jpg";
    fotos[2] = new Image();
    fotos[2].src = "../img/activitat2.jpg";
    fotos[3] = new Image();
    fotos[3].src = "../img/activitat3.jpg";
    fotos[4] = new Image();
    fotos[4].src = "../img/activitat4.jpg";
    fotos[5] = new Image();
    fotos[5].src = "../img/activitat5.jpg";
    fotos[6] = new Image();
    fotos[6].src = "../img/activitat6.jpg";
}

function swap_a(num) {
    document.getElementById('foto').src = "../img/activitat" + num + ".jpg";
}

