Delayed Sound

I’m having a problem where sound effects are delayed. All my sounds are in a separate SWF, I’m using “Linkage” to make them availible to actionscript. Then in my main movie I am doing something like this to play most of the sounds:


_root.sounds.loadMovie("sounds.swf");

belltower_btn.onRelease = function() {
	sounds.belltowerfx.start();
};

You can see the effect yourself: [Development Site Link]

Try clicking the robot’s anntenna, then immediately click on the clock tower.

Before I had every sound in it’s own movieclip inside the main movie, and at that time they all worked. But now, I want to be able to load the sounds as an external SWF.

Any ideas why these are not syncing?