Saludos.
Usa un script:
Código HTML:
<html>
<body>
<!-- Copiar dentro del tag BODY -->
<script language="javascript">
<!--
function VecImagenes()
{
n=0;
this[n++]="01.jpg";
this[n++]="02.jpg";
this[n++]="03.jpg";
this[n++]="04.jpg"
this.N=n;
}
var Imagenes=new VecImagenes();
src= Imagenes[ Math.floor(Math.random() * Imagenes.N) ] ;
document.write("<IMG SRC="+src+">");
//-->
</script>
</body>
</html>