Mootools & jQuery conflict

I have a conflict between Mootools(Slimbox) and jQuery(easyListSplitter). I can’t get them to work together. I was reading about jQuery.noConflict();, but I find it quite complicated to implement. Any help would be greatly appreciated.

This is solved. I changed:

$(document).ready(function () {

into

jQuery(document).ready(function($) { 

And for the sake of completion, you can find this info in the javascript tips thread that is stickied at the top of the forum.

Here’s the tip about handling jQuery noConflict issues.