Hello,
you have to load jQuery before mootools. At the end of jQuery add this line:
This allow other javascript frameworks to use $.
Any other jQuery script wrap inside these 2 rows:
(function($){
//jqueryscript;
})(jQuery);
This will get $ for jQuery functionality. So mootools will not work inside these rows.