var N = 1;

function muda() {
	maximo = 9;
	soma = eval(maximo) + 1;
    if (N == soma) {
        N = 1;
    }
    divatual = "exibicao" + N;    
    for (i=1; i < soma; i++) {
    if (i != N) {
    divatual2 = "exibicao" + i;  
    document.getElementById(divatual2).style.display = 'none';
    }
    }
    document.getElementById(divatual).style.display = '';
    N = N + 1;
    tempo = setTimeout("muda()",11000);
}