// JavaScript Document
step=28;
function autoImgFlip() {
step++
if (step > 28) {step = 0};
setTimeout("autoImgFlip()", 4000);
document.getElementById("a").src="fotos/0"+step+".jpg";
}
