'Talking' between different SWFs on webpage

Hey,
I know you guys are whizzes at this stuff, so I was hoping this would be an easy one for you. I have 2 SWFs, one with a list of ‘content’ and another that will display said content. The content is just different swfs. Think a list of cartoons and a player for those toons.

So lets say I have menu.swf, player.swf and movie1.swf. I only barely have an idea about how to do this.

menu.swf code:
[COLOR=red][COLOR=red]sending[/COLOR] = new LocalConnection();

myButton.onPress = function(){
sending.send(“myConnection”, “movie1.swf”);[/COLOR]
[COLOR=red]}[/COLOR]

player.swf code:
[COLOR=red]receiving = new LocalConnection();

receiving.loadMovie = function(receivedMovie){
loadMovie(“movie1.swf”, “holder”); // ‘holder’ being the destination MC
}

receiving.connect(“myConnection”);[/COLOR]

And Im looking at this knowing full well its garbage… Can someone please help me out?