Loadind external .swf

Hi guys…

i’m looking for how to do an image gallery like this

http://www.isopix.be/isopix.aspx

i tried to do something but no way. i can send my files if someone could help me please…

here is the code used in my empty movie clip

onClipEvent (load) {
 this.tempo = 2000;
 this.inizio = getTimer();
 this.file = ["sf1.swf", "sf2.swf", "sf3.swf", "mc"];
}
onClipEvent (enterFrame) {
 if (getTimer()-this.tempo>this.inizio) {
  this.inizio = getTimer();
  loadMovieNum(this.file[random(this.file.length)], 1);
 }
}

thanks…!