Hover captions—need some help

WHEN VIEWING THE SWF, ROLL OVER THE COUNTIES IN THE UPPER LEFT CORNER AND THE ONE IN THE UPPER RIGHT CORNER…ONLY THE ONE IN THE UPPER RIGHT WORKS LIKE IT SHOULD.

The buttons use two different hover caption movie clips, one for buttons on the left, and one for buttons on the right. In the first frame of the root I have these actions:
startDrag(_root.captionleft, true);
startDrag(_root.captionright, true);

And to make the captions visible only when I roll over a button, I’ve attached this action:
onClipEvent (enterFrame) {
if (_root.x == 1) {
this._alpha = 50;
} else {
this._alpha = 0;
}
}

how would you modify this to have a left right and middle section or specify the width and heigth of a movie or area and then say what width is each?

var mid = Stage.width/2;
_root.onMouseMove = function() {
if (_root._xmouse<=mid) {
startDrag(_root.captionleft, true);
} else {
startDrag(_root.captionright, true);
}
};