
var numero_foto = 1

function cambia_foto(){
var nombre_foto
numero_foto++
if (numero_foto > 8) { numero_foto = 1}
nombre_foto = 'imagenes/bienvenidosFOTO0'+numero_foto+'.jpg'
contenedor_foto.src = nombre_foto

}

function inicializa_foto(){
contenedor_foto=document.getElementById("foto_bienvenidos")
contenedor_foto.src = 'imagenes/bienvenidosFOTO01.jpg'
setTimeout('setInterval("cambia_foto()",3000)')
}




