<html>
<head>
<script type="text/javascript">
t = [3,47];
l = [3,47,91,135];
function moveImage(num){
num = parseInt(num,10);
lnum = (num-1)%4;
tnum = Math.floor((num-1)/4);
document.images['image'].style.left = l[lnum];
document.images['image'].style.top = t[tnum];
}
</script>
</head>
<body topmargin=0 leftmargin=0>
<table width=180 background=bg2.jpg><tr><td>
<img id="image" style="position:absolute;" src="
http://rpg.users.whitehat.dk/game/char1.gif" width="40" height="40">
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic1" onclick="moveImage(this.name.substring(3));" width="40" height="40" />
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic2" onclick="moveImage(this.name.substring(3));" width="40" height="40" />
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic3" onclick="moveImage(this.name.substring(3));" width="40" height="40" />
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic4" onclick="moveImage(this.name.substring(3));" width="40" height="40" />
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic5" onclick="moveImage(this.name.substring(3));" width="40" height="40" />
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic6" onclick="moveImage(this.name.substring(3));" width="40" height="40" />
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic7" onclick="moveImage(this.name.substring(3));" width="40" height="40" />
<img src="
http://rpg.users.whitehat.dk/game/bulbon.gif" name="pic8" onclick="moveImage(this.name.substring(3));" width="40" height="40" /></td></tr></table>
</body>
</html>