y = new Array( 2, -2,-3, 4,-1,-2, 1, 2,-1,0);
count = 0;
function puru()
{
	document.all["myIMG"].style.top  = y[count];
	count++;
	if (count >= y.length) count = 0;
	timerID = setTimeout("puru()",100);
}
