Dragslide fade

Hey yall. Question so I am trying to implement a dragslidefade on something and I have 55 different items that I need it to be applied to I am trying


import com.dragslidefade.*;
var a:Scale = new Scale(wa,1);
this.wa.onRollOver = function() {
 a.scaleClipTo(105,2);
 
}
this.wa.onRollOut = function() {
 a.scaleClipTo(100,2);
 
}

the thing that sucks is there are 55 different mc’s which i need to apply this to is there a quicker way to do it with an external class? So that I can just link each mc to handle that function?

Thanks,
MT