How to reference everything else in an array

I’m working on a set of buttons so that when one is rolled over, it gets larger and the remaining buttons get smaller. This however will all be housed in the rollOver function of the individual button rolled over. So I used an array and a “for loop” to encompass all of the buttons. I am able to reference the one I roll over by simply using “myButtons*” but I cannot figure out how to reference all the others using the array. Please HELP!

Note: The tweening uses a third part as from: http://hosted.zeh.com.br/mctween/

#include “mc_tween2.as”
var myButtons = [this.myButton_1, this.myButton_2, this.myButton_3, this.myButton_4];

for (var i=0; i<myButtons.length; i++) {
myButtons*.originalScale = myButtons*._xscale, _yscale;

// RollOver Section
myButtons*.onRollOver = function() {
this.scaleTo(this.originalScale + 30, 1, “easeoutelastic”);
/reference other mc instance names here/.scaleTo(this.originalScale - 30, 1, “easeoutelastic”);
};