>> call the jQuery noConflict function:
var $juery = jQuery.noConflict();
Paste the above code in your .js file, Now instead of calling your jquery functions with the $ dollar sign, you now need to replace it with "$jquery".
>> here is a basic example:
$juery(document).ready(function() { ... });
If you feel like $jquery is too long, you can always choose your own variable like $j (my personal favourite).