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