<style type="text/css">
#apDiv1 {
position:absolute;
left:38px;
top:23px;
width:10px;
height:10px;
z-index:1;
background-color: #000000;
}
</style>
</head>
<body>
<div id="apDiv1"></div>
<script>
var a=10;
var plus=1;
function dvig()
{
a=a+plus;
document.getElementById("apDiv1").style.top=a+"px";
if (a==100) {plus=-1; setTimeout(dvig, 10000);}
else setTimeout(dvig, 10);
if (a==0) {plus=1;}
}
dvig();
</script>
</body>
Лень было искать. набросал