Hi,
Solution:
Prototype (which used by CCS) and JQuery are using the same syntax. to reach specific functions.
This original syntax for both: $(function).
To change JQuery syntax use noConfilct option described here:
http://api.jquery.com/jQuery.noConflict/
Then Prototype and JQuery can work besides each other like this:
Then syntax for JQuery will be: jQuery("div p").hide();
Syntax for Prototye remains: $("div p").hide();
That's it. Then where to place the script will be a secondary question.
solesz