jQuery conflict in my HTML page?

I'm creating a static HTML site for my work, but I'm trying to add content switching tabs, suckerfish style menu, content slider, ect... via JQuery, but the scripts that I'm trying to link to to make each element work seem to conflict with each other. Each one works seperately, but when I link to multiple scripts one of the elements of the site will break, or all of them will break. I'm new to JQuery and I don't know javascript well, what seems to be the issue?

I'm linking these scripts right now:
<script src="jquery-1.1.3.1.pack.js" type="text/javascript"></script>
<script src="jquery.history_remote.pack.js" type="text/javascript"></script>
<script src="jquery.tabs.pack.js" type="text/javascript"></script>

when I attempt to link this one:
<script src="jquery.js" type="text/javascript"></script>

it seems to "break" the first three. Can someone help? Sorry, I'm a noob.
 
Back
Top