Navigation Issue

Hello,

I’m not sure if it’s my actionscript that’s the issue or not. But I’m posting this here. I’ve gone over everything and can’t find the source of the issue. Maybe I’ve just been looking at everything too long. Can someone help? See, my issue is that my navigation buttons (which are movie clips) are all taking me to the last scene. This is what I have on each of my navigation buttons. They all point to different scenes.

onClipEvent (enterFrame) {
if(hitTest(_root._xmouse, _root._ymouse, true)){
this.gotoAndStop(“corporateIdentityOn”);
updateAfterEvent();
} else {
this.gotoAndStop(“corporateIdentityOff”);
updateAfterEvent();
}
}

However, they are all taking me to the last scene. If anyone wants, I would gladly send the flash file for a better look. Any help would be appreciated.