Movie Clips interfearing with eachother

I am currently trying to load a movie clip each time a button is pressed. This movie clip will open up, do an animation and then at the end has the content for the page that the button was clicked for.

I have one working great Look here (click on news) However when I add a second movie clip, I can click on the first one fine, and then the second one, but it will not switch from the second to the first again. [url=“http://www.spunkay-angwe.com/asean.swf”]Look Here (click on news, then links, then news again)

I have one layer that is just for actions, and in there I have the following code:

News.onRelease = function() {
newsmc.gotoAndPlay(2);
};
Links.onRelease = function() {
Linksmc.gotoAndPlay(2);
};

then in each movie clip I have a stop action to prevent the animation to link over and over.

If someone could please help me that would be wonderful!