I've been using the following code to load a mp3 song which works fine:

myTunes = new Sound(audio_mc);
myTunes.loadSound("ihearsymphony.mp3", true);
myTunes.onSoundComplete = function() {
myTunes.start();
}

Now, I have a list of 5 different mp3 songs that I'd like to play one after another automatically. Any ideas in doing this?

Thanks