Hola
macaco
Prueba este código:
Código PHP:
<html>
<head>
<script type="text/javascript">
var tem;
var tope=50;
function mover() {
tope+=10;
document.getElementById('pepe').style.top = tope+'px';
}
</script>
</head>
<body>
<a href="#" onmousedown="temp = setInterval('mover()',200)" onmouseup="clearInterval(temp)">Mover</a>
<div id="pepe" style="position:absolute; top:50px">Muevete</div>
</body>
</html>
Saludos,