[jQuery] jQuery noConflict() help

[jQuery] jQuery noConflict() help


Trying to use jQuery & some plugins alongside Prototype/Scriptalicious
in Tapestry
I added noConflict to my scripts using this method:
jQuery.noConflict();
(function($) {
     $(function() {
//my stuff here
});
})(jQuery);
But I'm not clear as to whether or not I need to go through each
plugin script adding noConflict() as well. Or if I've just chosen the
wrong technique...
Can anyone clarify?
Thanks