This will only help with CSS and
JS, but I recommend removing all that stuff to an external .css / .
js file. It's much more maintainable and then you don't have the CDATA in the first place. Just <link> tags adding your stylesheets, and one line <script> tags calling your .
js files. It's also MUCH more maintainable because the code is isolated in one location, so if you need to make a change, you only make it once (rather than on every page in your website...

Ouch!)