﻿var x = 0;
var banner;
ArrayBannerLink = new Array();
var Indice = 1;
function BannerHome(IndiceAtual, Total) {
    for (x = 1; x <= Total; x++) {
        parent.document.getElementById("Banner" + x).style.display = "none";
        parent.document.getElementById("rodapeNumeros" + x).className = "default_flash_menu_box_off";
        parent.document.getElementById("Nome" + x).style.display = "none";
    }

    if (IndiceAtual > Total) {
        IndiceAtual = 1;
    }
    Indice = IndiceAtual; 

    parent.document.getElementById("Banner" + IndiceAtual).style.display = "block";
    parent.document.getElementById("rodapeNumeros" + IndiceAtual).className = "default_flash_menu_box_on";
    parent.document.getElementById("Nome" + IndiceAtual).style.display = "block";
}


function error() {
    window.onerror = function trataErro() {
        return true;
    }
}
function ProximoBannerHome() {
    
    var Total = parent.document.getElementById("Total").value;
    for (x = 1; x <= Total; x++) {
        parent.document.getElementById("Banner" + x).style.display = "none";
        parent.document.getElementById("rodapeNumeros" + Indice).className = "default_flash_menu_box_off";
        parent.document.getElementById("Nome" + x).style.display = "none";
    }
    Indice++;

    if (Indice > Total) {
        Indice = 1;
    }

    parent.document.getElementById("Banner" + Indice).style.display = "block";
    parent.document.getElementById("rodapeNumeros" + Indice).className = "default_flash_menu_box_on";
    parent.document.getElementById("Nome" + Indice).style.display = "block";
}
function FichaProduto() {
    location.href = ArrayBannerLink[Indice];
}
function FichaProdutoHtml(id) {
    parent.location.href = "../../ficha-produto.aspx?idEmpreendimento=" + id;
}

function Timer() {
    var funcao = "function(){ ProximoBannerHome();}";
    setTimeout("funcao", 1000);
}


