Bild per Random bewegen: Bild per Random bewegen

Beitrag lesen

Guten Tag,
Also ich habe ein kleines Script auf meiner Seite das ein Bild per
Random und auf Klick bewegt wird. Ich hab jetzt nur versucht das das Bild nicht zweimal auf derselben Position auftauchen kann, aber das geht nicht :P

Kann mich jemand verbessern/belehren? ^^

<script>
<!--
function randomPosition()
{
var e = document.getElementById('img');
e.style.position = "absolute";
if (Math.random() <= 1/6) {if (e.style.left != 170) {e.style.left = 170 + "px"; e.style.top = 360 + "px";}}
else { if (Math.random() <= 1/6*2) {if (e.style.left != 285) {e.style.left = 285 + "px"; e.style.top = 250 + "px";}}
else { if (Math.random() <= 1/6*3) {if (e.style.left != 410) {e.style.left = 410 + "px"; e.style.top = 152 + "px";}}
else { if (Math.random() <= 1/6*4) {if (e.style.left != 435) {e.style.left = 435 + "px"; e.style.top = 395 + "px";}}
else { if (Math.random() <= 1/6*5) {if (e.style.left != 685) {e.style.left = 685 + "px"; e.style.top = 145 + "px";}}
else { if (Math.random() <= 1/6*6) {if (e.style.left != 530) {e.style.left = 530 + "px"; e.style.top = 250 + "px";}}
}}}}}
}
//-->
</script>