Loader issues. please help

I use this for navigation between frames.

home.addEventListener(MouseEvent.CLICK,clickhome);
function clickhome(event:Event):void {
    trace("home");
    gotoAndStop("home");
}
Music.addEventListener(MouseEvent.CLICK, clickMusic);
function clickMusic(event:Event):void {
    trace("Music");
    gotoAndStop("Music");
}
Memories.addEventListener(MouseEvent.CLICK, clickMemories);
function clickMemories(event:Event):void {
    trace("Memories");
    gotoAndStop("Memories");
}
Pictures.addEventListener(MouseEvent.CLICK,clickPictures);
function clickPictures(event:Event):void {
    trace("Pictures");
    gotoAndStop("Pictures");
}

then i use this to load an external swf

 var myLoader:Loader = new Loader();
 addChild(myLoader);
 var url:URLRequest = new URLRequest("myalbum.swf");
  myLoader.load(url); 

You can see for yourself at sonnygunnz.com that flash 9 errors pop up in FF and I cant figure out why.

Please help me somebody