x = new Array( 10, 3,-6, 8,-10,-7,5,-3, 0);
y = new Array(-12, 6,-3,10, -9,-2,8, 2, 0);
count = 0;

function browserMoveStart()
{
	count = 0;
}

function browserMove()
{
	moveBy(x[count],y[count]);
	
	count++;
	if (count <= x.length)
	{
		setTimeout("browserMove()",100);
	}
}
