Conflicting JScript Files Revisted

I have the following files:


<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script src="scripts/iefix.js"></script>
<script src="scripts/test.js"></script> 
<script src="scripts/jquery.imageScroller.js"></script> 
<script src="scripts/tools.scrollable-1.0.5.min.js"></script>
<script src="scripts/mootools.js"></script>
<script src="scripts/slimbox.js"></script>

with the conflict being the mootools and slimbox files. I have looked at the JQuery no conflict fix but I’m confused where in the jquery.imageScroller.js to place the code. The first lines of code are:


( function( $ ) {
	$.fn.imageScroller = function ( options ) {
		return this.each( function() {
			var $this = $( this );
			var loadImgs = 0;

Thank you for your help Ralph but it didn’t seem to do the trick.

You could try adding the code in red:

[COLOR="Red"]$.noConflict();
  jQuery(document).ready[/COLOR](function($) {
	$.fn.imageScroller = function ( options ) {
		return this.each( function() {
			var $this = $( this );
			var loadImgs = 0;