hoje = new Date()
numero_de_imagens = 6
segundos = hoje.getSeconds(0)
numero = segundos % numero_de_imagens
if (numero == 0){
imagem = "imagens/stich/stich_rodape1.jpg"
}

if (numero == 1){
imagem = "imagens/stich/stich_rodape2.jpg"
}

if (numero == 2){
imagem = "imagens/stich/stich_rodape3.jpg"
}

if (numero == 3){
imagem = "imagens/stich/stich_rodape4.jpg"
}

if (numero == 4){
imagem = "imagens/stich/stich_rodape5.jpg"
}

if (numero == 5){
imagem = "imagens/stich/stich_rodape6.jpg"
}

document.write('<img src="' + imagem + '" border=0 width=108 height=112>')