var item = 0;
var max = 0;

function troca_propaganda(pos, id, cor_fundo, cor_fonte) {
    var elementos = document.getElementById("propagandaMenu").getElementsByTagName("div");    
    for (var i = 0; i < elementos.length; i++) {
        if(elementos[i].className.valueOf() == "conteudoPropaganda") {            
            if (document.getElementById('item_' + pos) == elementos[i]) {
                elementos[i].style.backgroundColor = cor_fundo;
                elementos[i].style.borderColor = cor_fundo;
                elementos[i].style.color = cor_fonte;
            
            } else {
                elementos[i].style.backgroundColor = "#d2eace";
                elementos[i].style.borderColor = "#d2eace";
                elementos[i].style.color = "#a0bca2";
            }
        }
    }

    for (i=0; i<max; i++) {
        if (i == pos) {
            document.getElementById('b1_' + pos).style.backgroundColor = cor_fundo;
            document.getElementById('b2_' + pos).style.backgroundColor = cor_fundo;
            document.getElementById('b3_' + pos).style.backgroundColor = cor_fundo;
            document.getElementById('b4_' + pos).style.backgroundColor = cor_fundo;
        } else {
            document.getElementById('b1_'+i).style.backgroundColor = "#d2eace";
            document.getElementById('b2_'+i).style.backgroundColor = "#d2eace";
            document.getElementById('b3_'+i).style.backgroundColor = "#d2eace";
            document.getElementById('b4_'+i).style.backgroundColor = "#d2eace";
        }
    }

    //elementos = document.getElementById("propagandaMenu").getElementsByTagName("b");
    //alert(elementos.length);
    //    for (var ii = 0; ii < elementos.length; ii++) {
    //        if (elementos[ii].id.valueOf() != "breal") {
    //            alert('teste');
    //            if (elementos[ii].id.valueOf() == pos) {
    //                elementos[ii].style.backgroundColor = cor_fundo;
    //                elementos[ii].style.borderColor = cor_fundo;
    //            } else {
    //                elementos[ii].style.backgroundColor = "#d2eace";
    //                elementos[ii].style.borderColor = "#d2eace";
    //            }
    //        }
    //    }

    carrega('propaganda','views/propaganda.php?id=' + id + '&include=true');

}

function troca_propaganda_auto(count, inicio) {
    pos = inicio;
    max = count;
    troca_propaganda_flash();
//    document.getElementById('item_' + inicio).onclick();
//    inicio++;
//    if (inicio >= count) {
//        inicio = 0;
//    }
//setTimeout("troca_propaganda_auto(" + count + ", " + inicio + ");", 15000);
}

function troca_propaganda_flash() {
    document.getElementById('item_' + item).onclick();
    item++;
    if (item >= max) {
        item = 0;
    }
}
