Using no conflict (jscrollpane and mootools)

Using no conflict (jscrollpane and mootools)

Hi i am using jscrollpane and bumpbox ... now bumpbox uses mootools which is causing a conflict in jscrollpane. My script looks like this
 
<script type="text/javascript">
(function($) {
$(function()
{
 $('.scroll-pane').jScrollPane();
});
})(jQuery.noConflict());
</script>






 
using this i get the scrollpane working but bumbox stops. Without the noconflict my scrollpane does not load the style sheet for it. I mean that without adding noconflcict my jscrollpane works but loses the custom scrollbar colors. I am pretty new at this. Do I have to add the function anywhere else? I have just added the noconflict to the head area. How do I implement it properly?? Thanks