﻿function ImagemAleatoria_Mostrar(obj) {

    var imagens = new Array(
        "../_Arena/Modelos/BrasilMetodo/Img/FotosTopo/Foto1.png",
        "../_Arena/Modelos/BrasilMetodo/Img/FotosTopo/Foto2.png",
        "../_Arena/Modelos/BrasilMetodo/Img/FotosTopo/Foto3.png"
    );

    var max = imagens.length;
    var rnd = Math.floor(Math.random() * max);

    obj.src = imagens[rnd];

}

