Optimization pls

I got 23 boxes (box1, box2…) inside two movieclips (Circle.SizeableCircle). I need to bring all these to the front, using localToGlobal. This brings box1 to the front (or whatever it’s called):

var cpBox1:Point=new Point(Circle.SizeableCircle.box1.x,Circle.SizeableCircle.box1.y);
var gpBox1:Point=Circle.SizeableCircle.box1.parent.localToGlobal(cpBox1);

What can I do instead of making 23x that code?