<!--

if (document.images) {
home_1 = new Image(78,15); home_1.src = "../imagens/home_1.jpg";
home_2 = new Image(78,15); home_2.src = "../imagens/home_2.jpg";
contactos_1 = new Image(78,15); contactos_1.src = "../imagens/contactos_1.jpg";
contactos_2 = new Image(78,15); contactos_2.src = "../imagens/contactos_2.jpg";
empresa_1 = new Image(78,15); empresa_1.src = "../imagens/empresa_1.jpg";
empresa_2 = new Image(78,15); empresa_2.src = "../imagens/empresa_2.jpg";

loja_online_1 = new Image(85,20); loja_online_1.src = "../imagens/loja_online_1.jpg";
loja_online_2 = new Image(85,20); loja_online_2.src = "../imagens/loja_online_2.jpg";
musica_1 = new Image(54,20); musica_1.src = "../imagens/musica_1.jpg";
musica_2 = new Image(54,20); musica_2.src = "../imagens/musica_2.jpg";
filmes_1 = new Image(50,20); filmes_1.src = "../imagens/filmes_1.jpg";
filmes_2 = new Image(50,20); filmes_2.src = "../imagens/filmes_2.jpg";
eventos_1 = new Image(61,20); eventos_1.src = "../imagens/eventos_1.jpg";
eventos_2 = new Image(61,20); eventos_2.src = "../imagens/eventos_2.jpg";
tatoo_piercing_1 = new Image(117,20); tatoo_piercing_1.src = "../imagens/tatoo_piercing_1.jpg";
tatoo_piercing_2 = new Image(117,20); tatoo_piercing_2.src = "../imagens/tatoo_piercing_2.jpg";
shiatsu_1 = new Image(124,20); shiatsu_1.src = "../imagens/shiatsu_1.jpg";
shiatsu_2 = new Image(124,20); shiatsu_2.src = "../imagens/shiatsu_2.jpg";
sex_shop_1 = new Image(70,20); sex_shop_1.src = "../imagens/sex_shop_1.jpg";
sex_shop_2 = new Image(70,20); sex_shop_2.src = "../imagens/sex_shop_2.jpg";
clientes_1 = new Image(110,20); clientes_1.src = "../imagens/clientes_1.jpg";
clientes_2 = new Image(110,20); clientes_2.src = "../imagens/clientes_2.jpg";

campanha_0 = new Image(142,108); campanha_0.src = "../images/home/campanha_0.jpg";
campanha_1 = new Image(142,108); campanha_1.src = "../images/home/campanha_1.jpg";
promocoes_0 = new Image(142,108); promocoes_0.src = "../images/home/promocoes_0.jpg";
promocoes_1 = new Image(142,108); promocoes_1.src = "../images/home/promocoes_1.jpg";
cheque_0 = new Image(142,108); cheque_0.src = "../images/home/cheque_0.jpg";
cheque_1 = new Image(142,108); cheque_1.src = "../images/home/cheque_1.jpg";
anuncios_0 = new Image(142,108); anuncios_0.src = "../images/home/anuncios_0.jpg";
anuncios_1 = new Image(142,108); anuncios_1.src = "../images/home/anuncios_1.jpg";
}

/* Function that swaps images. */

function di20(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

/* Functions that track and set toggle group button states. */

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}

//-->