Forum Moderators: mack
images[images.length] = '<URL for img1>'
images[images.length] = '<URL for img2>'
...
images[images.length] = '<URL for imgN>'
function randomised(toChange)
{
toChange.src = images[Math.floor(Math.random()*images.length)]
}
</script>
</head>
<body>
<img src="<img-file>" alt="" onmouseover="randomised(this)" onmouseout="this.src='<img-file>'">
</body>
</html>
Simple :-)