Multiple buttons don't work!

Hi,

Another ‘newbie’ here with a problem that has taken more than a week of my time to solve and I’m still not there yet! Please help!!!

I’m designing a website for a Reiki/Spiritual advisor thingymebob and I have a menu on the left of my page of buttons and when I click a button it displays the contents of the button on the stage. Easy enough, so to speak, but the code I have written should send the viewer to a certain frame in the timeline where the tween begins.

When I play the swf and click the home button it works perfectly on the first page and if I go down the menu and click every other button in order they too all work fine, but as soon as I start clicking any other button randomly there is no tween effect and it seems to send me to the wrong page(!) plus straight to the clear text on the stage without any fading in tween. As though it has just gone to the last frame of the tween.

Here’s the code below. I’ve asked the spiritual advisor for guidance and he sent me here, so please prove him right - ha ha!

stop();
myHome.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler2);
function mouseDownHandler2(event:MouseEvent):void {
gotoAndPlay(281);
}
stop();
myReiki.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler3);
function mouseDownHandler3(event:MouseEvent):void {
gotoAndPlay(297);
}
stop();
myTheta.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler4);
function mouseDownHandler4(event:MouseEvent):void {
gotoAndPlay(312);
}
stop();
myLife.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler5);
function mouseDownHandler5(event:MouseEvent):void {
gotoAndPlay(327);
}
stop();
myCouns.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler6);
function mouseDownHandler6(event:MouseEvent):void {
gotoAndPlay(342);
}
stop();
myCourses.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler7);
function mouseDownHandler7(event:MouseEvent):void {
gotoAndPlay(357);
}
stop();
myAbout.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler8);
function mouseDownHandler8(event:MouseEvent):void {
gotoAndPlay(372);
}
stop();
myTv.addEventListener(MouseEvent.MOUSE_DOWN,
mouseDownHandler9);
function mouseDownHandler9(event:MouseEvent):void {
gotoAndPlay(388);
}

Any help is welcome, thanks!
ps. I’m working on an imac, don’t know if this helps?