Sound fading with setinterval

HELP ! i’m in trouble.

I am making a 3-song jukebox for a CD-rom. I’ve got a button for each song. And I’ve got 3 soundobjects. song1, song2, song3

when I press button 1:
on(release){
fadeout();
_root.newchoice = 1;
song1.loadSound(“mp3/song1.mp3”,true);
song1.play();
}

// THIS FUNCTION SHOULD FADE OUT WHATEVER’s PLAYING (and start fading in the new song, but I haven’t even started thinking about that one… : ) )

function fadeout(){
i=1;
song=“song”+_root.currentsong;
var fadeintervalID;
fadeintervalID = setInterval( lower_volume, 50 );
function lower_volume(){
if (i<=100 && i>=0){
if (song == “song1”){
song1.setVolume(100-i);
}
if (song == “song2”){
song2.setVolume(100-i);
}
if (song == “song3”){
song3.setVolume(100-i);
}
trace (_root.currentsong);
i+=1;
}else{
clearInterval(fadeintervalID);
_root.currentsong = _root.newchoice;
trace (_root.currentsong);
}
}
}

SO the problem is: I have to wait until the song has completely faded before I select the next one to get the result I want…(at the end of the fade the _root.newchoice becomes the _root.currentsong)

so for the moment I can hear all three songs with no fading if I press them one after the other fast enough…

get the problem ?
Hins / solutions would be very much appreciated !

stanley :-\