<!--
var btop = new Array(36);
var bleft = new Array(36);
for (x = 0; x<18; x++) { 
	btop[x+1] = 40+(x*70);
	btop[x+19] = 40+(x*70);
	bleft[x+1] = 5;
	bleft[x+19] = 135;
}

function moveban() {
	for (x = 1; x <= 36; x++) {
		if (btop[x] > 1225) { btop[x] = 1225; }
		if (btop[x] > 40 && btop[x] < 1225 && bleft[x] == 5) { btop[x]++; }
		if (btop[x] > 40 && btop[x] < 1225 && bleft[x] == 135) { btop[x]--; }
		if (btop[x] == 1225 && bleft[x] < 135) { bleft[x]+=2; }
		if (btop[x] == 1225 && bleft[x] == 135) { btop[x]--; }
		if (btop[x] == 40 && bleft[x] > 5) { bleft[x]-=2; }
		if (btop[x] == 40 && bleft[x] == 5) { btop[x]++; }
		emname = "sban"+x;
		document.getElementById(emname).style.top = btop[x]+"px";
		document.getElementById(emname).style.left = bleft[x]+"px";
	}
	setTimeout("moveban()", 50);
}
-->