Hello,
I have found this code but I would like the moving image repeat continuously around (is it also possible to add more images?)
Thank you
<html>
<head>
<script type="text/javascript">
var i=1
function starttimer()
{
document.getElementById('myimage').style.position="relative"
document.getElementById('myimage').style.left=+i
i++
timer=setTimeout("starttimer()",10)
}
function stoptimer()
{
clearTimeout(timer)
}
</script>
</head>
<body onload="starttimer()" onunload="stoptimer()">
<img id="myimage" src="smiley.gif" width="32" height="32" />
</body>
</html>


