<script type="text/javascript">
window.onload=function()
{
var Box=document.getElementById('box')
Box.onmouseover=function()
{
startMove(100)
}
Box.onmouseout=function()
{
startMove(30)
}
}
var timer=null;
var alpha=30
function startMove(Target)
{
var Box=document.getElementById('box')
clearInterval(timer)
timer=setInterval(function()
{
var speed=0