In the <HEAD>:
<script>
var firstTime = true
function moveIt() {
if (firstTime) {
mover.style.top = 5
mover.style.left = 5
firstTime = false
}
chgXBy = Math.floor((Math.random() * 10))
if ((Math.random() < .5) && parseInt(mover.style.top) > 5)
{ mover.style.top = parseInt(mover.style.top) - chgXBy }
else { mover.style.top = parseInt(mover.style.top) + chgXBy }
chgYBy = Math.floor((Math.random() * 10))
if ((Math.random() < .5) && parseInt(mover.style.left) > 5)
{ mover.style.left = parseInt(mover.style.left) - chgYBy }
else { mover.style.left = parseInt(mover.style.left) + chgYBy }
setTimeout("moveIt()",10)
}
</script>