<div dir="ltr">The correct place for the jQuery.noConflict() call would be after mootools, after jQuery (which you've got in the right order - mootools first, then jQuery), and before any other javascript code that makes use of either. So after line 533, before line 536.
But you also need to fix lines 536 to 540 by either substituting jQuery for the $, or wrapping them in this pattern:
(function($){
// code with the jQuery $ can safely go in here
})(jQuery);
- Richard