Ok Graphic nel body inserisci questo script


<script language="JavaScript">

function rnd_image(){

var now = new Date();



var sec_divide = now.getSeconds();

rnd_number = Math.floor(sec_divide/5); // /20=0, 1, 2 /10=0, 1, 2, 3, 4, 5 etc...

document.write('[img]image' + rnd_number +'.jpg[/img]');

}

// -->

</script>

poi nel punto esatto dove vuoi l'immagine


<script language="">

rnd_image();

</script>

Le tue immagini si devono chiamare image1.jpg, image2.jpg, ecc

occhio che i numeri nello script del body nella riga rnd_number vanno tutti sulla stessa riga.

Ciao Mauk