Hola
deccweb
Prueba este código:
Código PHP:
<html>
<head>
<script type="text/javascript">
var num=0;
function imagen() {
imgs = ['imagen1.gif','imagen2.gif','imagen3.gif']
document.getElementById('pepe').src = imgs[num];
num++;
if (num>imgs.length-1) num=0;
}
</script>
</head>
<body onload='setInterval("imagen()",1000)'>
<img id="pepe" />
</body>
</html>
Saludos,