AAAARGH - need tween and ease onRollOver

Grey hair appearing on my head…

I have tried to make a simple 3 block navigation --> http://www.plusidentity.dk/TEST/3blocks.swf

.fla here (MX2004) http://www.plusidentity.dk/TEST/3blocks.fla

Now the blocks should expand with ease when U roll the mouse over, but my brain is temporary fried… can’t figure it out.

my AS looks like this… very simple, but crappy :frowning:

[AS]
stop();
//
main_mc.top_mc.onRollOver = function() {
//this.swapDepths(highest);
//highest = this;
//
this._y = main_mc._y;
this._height = 200;
main_mc.middle_mc._y = main_mc._y+200;
main_mc.middle_mc._height = 50;
main_mc.bottom_mc._y = main_mc._y+250;
main_mc.bottom_mc._height = 50;
};
main_mc.middle_mc.onRollOver = function() {
//this.swapDepths(highest);
//highest = this;
//
this._y = main_mc._y+50;
this._height = 200;
main_mc.top_mc._y = main_mc._y;
main_mc.top_mc._height = 50;
main_mc.bottom_mc._y = main_mc._y+250;
main_mc.bottom_mc._height = 50;
};
main_mc.bottom_mc.onRollOver = function() {
//this.swapDepths(highest);
//highest = this;
//
this._y = main_mc._y+100;
this._height = 200;
main_mc.top_mc._y = main_mc._y;
main_mc.top_mc._height = 50;
main_mc.middle_mc._y = main_mc._y+50;
main_mc.middle_mc._height = 50;
};
//
function reset(target) {
target.onRollOut = function() {
main_mc.top_mc._y = main_mc._y;
main_mc.top_mc._height = 100;
main_mc.middle_mc._y = main_mc._y+100;
main_mc.middle_mc._height = 100;
main_mc.bottom_mc._y = main_mc._y+200;
main_mc.bottom_mc._height = 100;
};
}
reset(main_mc.top_mc);
reset(main_mc.middle_mc);
reset(main_mc.bottom_mc);
//

[/AS]

Really could use a hand here… thanx

/JBOY