Der skulle lige ændres i 5 linjer !-)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>Vis og scroll</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.boks {
position:absolute;
width:0px;
height:0px;
border:1px solid #000;
background-color:#fff;
overflow:hidden;
}
img{
width:300px;
height:300px;
}
</style>
<script type="text/javascript">
var timer = new Array();
var active = false;
var speedX = speedY = 5;
var timeoutSpeed = 50;
var ID = "boks"
function scrollBoks(n,act,posX,posY)
{
window.clearTimeout(timer[n]);
box = document.getElementById(ID+n);
box.style.display = "block";
x = parseInt(box.style.left);
y = parseInt(box.style.top);
if (x == posX && y == posY){
if(act==0)box.style.display = "none";
}else {
box.style.width = box.style.left = (x > posX && x != posX) ? x-speedX+"px" : x+speedY+"px";
box.style.height = box.style.top = (y > posY && x != posY) ? y-speedY+"px" : y+speedY+"px";
timer[n] = window.setTimeout("scrollBoks("+n+","+act+","+posX+","+posY+");",timeoutSpeed);
}
}
</script>
</head>
<body>
<img src="billede1.png" onmouseover="scrollBoks(1,1,100,100);" onmouseout="scrollBoks(1,0,0,0);">
<img src="billed2.png" onmouseover="scrollBoks(2,1,100,100);" onmouseout="scrollBoks(2,0,0,0);">
<img src="billed3.png" onmouseover="scrollBoks(3,1,100,100);" onmouseout="scrollBoks(3,0,0,0);">
<img src="billede4.png" onmouseover="scrollBoks(4,1,100,100);" onmouseout="scrollBoks(4,0,0,0);">
<div class="boks" id="boks1" style="left:0px;top:0px;display:none;">Denne boks skal så flytte sig<br><br>Info om billede 1</div>
<div class="boks" id="boks2" style="left:0px;top:0px;display:none;">Denne boks skal så flytte sig<br><br>Info om billede 2</div>
<div class="boks" id="boks3" style="left:0px;top:0px;display:none;">Denne boks skal så flytte sig<br><br>Info om billede 3</div>
<div class="boks" id="boks4" style="left:0px;top:0px;display:none;">Denne boks skal så flytte sig<br><br>Info om billede 4</div>
</body>
</html>