Urgently need help in swapping part of the script

[font=verdana, arial, helvetica][size=2]Dear gurus/members,
I am new to actionscript. I have created a script that will play server side sound object and client side mp3 files alternately. Now, I would like to play the client side mp3 first then only play server side sound object alternately. However, I have no idea how can I do so. The following is the code that need to be swapped:
[/size][/font]


on (release) {
 stopAllSounds();
 var iddiscussion = 1;
 var numberFile = 3;
 var serverCtr = 0;
 var serverAudio = new Array("PE14_1a", "PE14_1c", "PE14_1e");
 function discussion() {
  server = new Sound();
  //serverFile = "PE14_1d";
  serverFile = serverAudio[serverCtr];
  server.attachSound(serverFile);
  //server side mp3
  server.start(0, 0);
  trace("SERVER "+serverFile+iddiscussion);
  server.onSoundComplete = function() {
   client = new Sound();
   clientFile = "[file:///c:/program](file:///c:/program) files/IEBAudioRecorder/test"+iddiscussion+".mp3";
   client.onLoad = function(success) {
	//define conditions for success first
	if (success) {
	 this.start();
	 trace("SOUND SUCCESS!!!");
	 client.onSoundComplete = function() {
	  //doesn't run if not success...
	  if (iddiscussion<numberFile) {
	   //no longer dependent on client.onSoundComplete
	   iddiscussion++;
	   trace("Add counter to "+iddiscussion);
	   serverCtr++;
	   discussion();
	  }
	 };
	} else {
	 //skip to the next file
	 trace("SOUND FAILED!!!");
	 if (iddiscussion<numberFile) {
	  //no longer dependent on client.onSoundComplete
	  iddiscussion++;
	  trace("Add counter to "+iddiscussion);
	  serverCtr++;
	  discussion();
	 }
	}
   };
   client.loadSound(clientFile, true);
   //load client mp3
   trace("CLIENT "+clientFile+iddiscussion);
  };
 }
 discussion();
}

[font=verdana, arial, helvetica][size=2]
[/size][/font][font=verdana, arial, helvetica][size=2]How to make it in a way that it will play the client mp3 first then only server side sound object? Looking forward to some reply soon.
[indent]

Thanks in advance,
Janice[/size][/font]

[/indent]

hmm so u want it to play a sound unless an mp3 that a user selects is playing?

I would like to swap the code above to make it play the client side mp3 first then play server side sound object.

For example: clientFile1.mp3-serverFile1, clientFile2.mp3-serverFile2 …etc

The code above allows me to play server side sound object first then play client side mp3. But now, instead of this, I want it to work another way round that starts with client side mp3 first, then play server side sound object. Hope its not confusing.

Thanks in advance,
Janice