Hi Andre,
da sind der Phantasie keine Grenzen gesetzt. Eine Möglichkeit (mit JavaScript und max. 60 Bildern):
<head>
...
...
<script language="JavaScript">
<!--
bild = new Array(
'"image1.jpg" width=429 height=294',
'"image2.jpg" width=429 height=294',
'"image3.jpg" width=433 height=295',
'"image4.jpg" width=434 height=315',
'"image5.jpg" width=434 height=315',
'"image6.jpg" width=427 height=300',
'"image7.jpg" width=429 height=299',
'"image8.jpg" width=430 height=300',
'"image9.jpg" width=430 height=300',
'"image10.jpg" width=435 height=298'
);
function bildnr()
{
return (new Date()).getSeconds() % bild.length;
}
// -->
</script>
</head>
<body ...>
...
...
<script language="JavaScript">
<!--
document.write('<img src=' + bild[bildnr()] + '>');
// -->
</script>
</body>
Gruß,
Stefan