Move to new _x _y problem

OK, so not sure why this is happening and i am wondering if anyone out there could help me out.

I am trying to have 4 different menu sections fly to specific x y cordinates from a randomly generated location. i have figured out how to do this with my first section, but when i try to implement the same code for the other sections they simply “follow” the movment of the first section. so my main question is, how do i modify this so that i can do the same thing to 4 different clips?

I am using a controller clip with 3 frames to tell the section where to go,

heres is the code i am using:

frame 1:
loops = 0;
_root.target_x = 55
_root.target_y = 29
_root.xdiv = (_root.target_x-_root.work._x)/12;
_root.ydiv = (_root.target_y-_root.work._y)/12;

frame2:
loops++;
_root.work._x += _root.xdiv;
_root.work._y += _root.ydiv;

frame3:
loops++;
_root.work._x += _root.xdiv;
_root.work._y += _root.ydiv;

any help would be greatly appreciated

crosspost