Combine Scripts?

Ok so I have this script I want to use to do the transition effects between external movieclips:

 _root.currMovie = "your_first_section_name";
 container.loadMovie(_root.currMovie+".swf"); 

But, I want to load a random movie clip when this script is run and the script I’m using for this is here:

 
myArray = ["home_quote1.swf", "home_quote2.swf", "home_quote3.swf"];
randomClip = myArray[random(myArray.length)];
//usage
sub_nav.loadMovie(randomClip);

Is there any way to combine the two of these so it works correctly? PLEASE AND THANKS!

Boon.