Button rollover problem

I’m gonna try and make this sound as simple as possible.

I have 5 buttons inside a movieclip called menuMovie, placed on the main timeline.

These buttons have a 3 parts - the still part, the roll over and roll out.

I have code placed on the main timeline which lets the last button clicked stay on its roll over, and the last button clicked to go to the roll out method.

This all works out very nicely ( don’t worry about the .releese being spelt wrong, its correct), BUT i have a small problem.

I have another button which isnt party of the other buttons. When this button is pressed it goes to another part of the site - therefore i need to make the last button of the menu (that would still be in its up state) to then go and play the roll out part.

I hope you understood that.

And here is my main timeline code for the buttons.


//this code is for the menu buttons
MovieClip.prototype.over = function() {
	this.gotoAndPlay("over");
};
//this code is for the menu buttons
MovieClip.prototype.out = function() {
	this.gotoAndPlay("out");
};
//this code is for the menu buttons
MovieClip.prototype.releese = function() {
	if(_root.homeMovie.home == true)
	{
	_root.homeMovie.gotoAndPlay("end");
	}
	this.enabled = false;
	eval(lastSection).enabled = true;
	eval(lastSection).gotoAndPlay("out");
	_root.lastSection = this;
	_root.movieLoader.loadMovie("content"+i+".swf");
};

thanks for your help

mrwilliby