1st Flash Site... HELP! :)

Hey there! I’m new to kirupa.com, and to Flash, and I need some help. I found a menu (maybe it’s from here?), and I’m just getting started with AS. When I code one of the buttons to load a movie, all of them do it. How can I code them so that each button loads a different movie??

Here’s the website: http://www.cloud9vip.com

Here’s the AS for the buttons:

nox_txt.autoSize=“center”;
nox_txt.text=myText;
this._alpha=30;
smallSize=100;
bigSize=200;
speed=4;
reSize=function(mysize,alp){
this.onEnterFrame=function(){
this._alpha+=(alp-this._alpha)/speed;
this._xscale+=(mysize-this._xscale)/speed;
this._yscale=this._xscale
}
}
this.onRollOver=function(){
reSize(bigSize,100);
}
this.onRollOut=function(){
reSize(smallSize,30);
}

this.onRelease=function(){
_root.contents.loadMovie(“aboutus.swf”);
}

Thanks in advance!! :ne: