Play btn out label when another btn clicked?

Well here it goes…

Pretend a button is selected - when that button is selected it goes to the active frame which shows that the button is selected. When you click another button it currently resets itself - BUT - I want it to go to and play frame “mouse_out” and than reset itself. Below is the code I am currently working wtih:


button1.onRelease=function(){
    resetall();
 this.gotoAndStop("active");
    this.enabled=false;
 gotoAndPlay("home");
}
function resetall(){
    for(var i=1; i<=4; i++){
        eval("mybutton"+i).enabled=true;
    }
}
button1.onRollOver=function(){
 this.gotoAndPlay("mouse_over");
}
button1.onRollOut=function(){
 this.gotoAndPlay("mouse_out");
}
 

I would appreciate any help - oh and Im pretty much a beginner when it comes to Actionscript!!

Thanks again,
RED