Question about onloadinit

 
var mcl:MovieClipLoader = new MovieClipLoader();
var mclL:Object = new Object();
mclL.onLoadInit = function(target:Movieclip) {
if (target._name=="head"){
mcl.loadClip("testhead.swf",_root.head);
}
};
mcl.addListener(mclL);
mcl.loadClip("test1.swf",_root.body);

does having an if statement in a onloadinit trigger the loadclip command?

it doesn’t seem so or am i doing something wrong?