simple servo project help

Hi all,

I put up a video to describe what I'm trying to do.

Basically I need help splitting these two lines of servos so they start at the same time, rather than having the wave transfer from one to the other.

The code I used is very simple:

#include <MatrixNet.h>

MatrixNet myMatrix;

unsigned char i = 0;

void setup()
{
myMatrix.begin();
}

void loop()
{

for(i=0;i<64;i++) {
myMatrix.changeServo(0, i, 200);
delay(100);
}

for(i=0;i<64;i++) {
myMatrix.changeServo(0, i, 25);
delay(100);
}
}

Let me know . Thanks!

Take out the 'delay's, and replace them with something better.