Movies clips not replacing each other

Hi I have a series of links which when clicked load different movies. Each of these movies are basically just a sequence of different jpgs. When I click one links it seems fine playing as normal but whe I hit the next link it shows the coreect first image of the movie but then play all the images from the previously loaded movie. It doesn’t seem to be unloading the previous movie correctly even though I have them all on the one level. Can anyone see a problem with the following code:

before_mc.onRelease = function() {
createEmptyMovieClip(“container2”, 1);
loadMovie(“deaf2.swf”, “container2”);
container2._x = 270;
container2._y = 173;
};
music_mc.onRelease = function() {
createEmptyMovieClip(“container2”, 1);
loadMovie(“deaf3.swf”, “container2”);
container2._x = 270;
container2._y = 173;
};

after_mc.onRelease = function() {
createEmptyMovieClip(“container2”, 1);
loadMovie(“deaf4.swf”, “container2”);
container2._x = 270;
container2._y = 173;
};

I’d really appreciate some help thanks in advance :slight_smile: