<!--
var btop = new Array(28);
var bleft = new Array(28);
for (x = 0; x<14; x++) { 
	btop[x+1] = 40+(x*70);
	btop[x+15] = 40+(x*70);
	bleft[x+1] = 15;
	bleft[x+15] = 145;
}

function moveban() {
	for (x = 1; x <= 28; x++) {
		if (btop[x] > 960) { btop[x] = 960; }
		if (btop[x] > 40 && btop[x] < 960 && bleft[x] == 15) { btop[x]++; }
		if (btop[x] > 40 && btop[x] < 960 && bleft[x] == 145) { btop[x]--; }
		if (btop[x] == 960 && bleft[x] < 145) { bleft[x]+=2; }
		if (btop[x] == 960 && 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);
}
-->