Hola
Sette
Prueba este ejemplo, cambia de imagen cada 3 segundos:
Código PHP:
<html>
<head>
<script type="text/javascript">
imagenes = ['imagen1.jpg','imagen2.jpg','imagen3.jpg','imagen4.jpg'];
function cambiar() {
num = Math.floor(Math.random() * imagenes.length);
document.getElementById('im').src = imagenes[num];
}
</script>
</head>
<body onload="setInterval('cambiar()',3000)">
<img src="imagen1.jpg" id="im" />
</body>
</html>
Saludos,