I have loaded an external swf into my timeline using a frame and this actionscript

createEmptyMovieClip("anim", 0);
//create a new but empty movie clip (anim)
anim.loadMovie("3DlikeNews.swf");
//load "3DlikeNews.swf" into the empty (anim) movie clip
anim._x = 0.5;
//Adjust the position of the imported "3DlikeNews.swf" file
anim._y = 320.5;

everything works good except the navigation does not work anymore when you go to this frame with the loader.

here is the url
http://dirtyrattrecords.com/test/
If you click the news it loads a swf but all other buttons don't work. To I need to add an unload movie function.