I do know, that if you want to use both mootools and jquery in the same template, you'll want to use the noconflict. I'm using both libraries on one of my phpbb3 rockettheme templates, seems to be working well.
Example:
var $j = jQuery.noConflict();
Then, you'll reference your jquery functions as such
$j(document).ready(function(){
});