var imageListVilla = new Array();
var browserok = false;
if (document.images){ browserok = true;}

function loadVillaImages(){
if (browserok) {
imageListVilla[0] = new Array(5);
imageListVilla[0][0] = 'delphi';
imageListVilla[0][1] = new Image();
imageListVilla[0][2] = new Image();

imageListVilla[1] = new Array(5);
imageListVilla[1][0] = 'zoe';
imageListVilla[1][1] = new Image();
imageListVilla[1][2] = new Image();

imageListVilla[2] = new Array(5);
imageListVilla[2][0] = 'mimi';
imageListVilla[2][1] = new Image();
imageListVilla[2][2] = new Image();

imageListVilla[3] = new Array(5);
imageListVilla[3][0] = 'venus';
imageListVilla[3][1] = new Image();
imageListVilla[3][2] = new Image();

imageListVilla[4] = new Array(5);
imageListVilla[4][0] = 'esperanza';
imageListVilla[4][1] = new Image();
imageListVilla[4][2] = new Image();

imageListVilla[5] = new Array(5);
imageListVilla[5][0] = 'saturn';
imageListVilla[5][1] = new Image();
imageListVilla[5][2] = new Image();

imageListVilla[6] = new Array(5);
imageListVilla[6][0] = 'apollo';
imageListVilla[6][1] = new Image();
imageListVilla[6][2] = new Image();

imageListVilla[7] = new Array(5);
imageListVilla[7][0] = 'bungalow';
imageListVilla[7][1] = new Image();
imageListVilla[7][2] = new Image();


imageListVilla[0][2].src = '../../images/buttons/01invert.jpg';
imageListVilla[1][2].src = '../../images/buttons/02invert.jpg';
imageListVilla[2][2].src = '../../images/buttons/03invert.jpg';
imageListVilla[3][2].src = '../../images/buttons/04invert.jpg';
imageListVilla[4][2].src = '../../images/buttons/05invert.jpg';
imageListVilla[5][2].src = '../../images/buttons/06invert.jpg';
imageListVilla[6][2].src = '../../images/buttons/07invert.jpg';
imageListVilla[7][2].src = '../../images/buttons/08invert.jpg';

imageListVilla[0][1].src = '../../images/buttons/01.jpg';
imageListVilla[1][1].src = '../../images/buttons/02.jpg';
imageListVilla[2][1].src = '../../images/buttons/03.jpg';
imageListVilla[3][1].src = '../../images/buttons/04.jpg';
imageListVilla[4][1].src = '../../images/buttons/05.jpg';
imageListVilla[5][1].src = '../../images/buttons/06.jpg';
imageListVilla[6][1].src = '../../images/buttons/07.jpg';
imageListVilla[7][1].src = '../../images/buttons/08.jpg';


}
}


function hivilla(imgName) {
    if (browserok) {
        for (var i=0; i < imageListVilla.length; i++) {
            if (imageListVilla[i][0] == imgName) {
                document.images[imgName].src = imageListVilla[i][2].src;
               // document.images[imgName + 1].src = imageListVilla[i][2].src;
                break;
            }
        }
    }
}

function lovilla(imgName) {
    if (browserok) {
        for (var i=0; i < imageListVilla.length; i++) {
            if (imageListVilla[i][0] == imgName) {
                document.images[imgName].src = imageListVilla[i][1].src;
               // document.images[imgName + 1].src = imageListVilla[i][1].src;
                break;
            }
        }
    }
}

