First of all, try using the current version of jQuery (1.7.2) and see if both scripts work.
If not, consider using something compatible with the current version of jQuery - if something requires jquery 1.3, it has not been updated for a long time.
If you really need both scripts and they require different versions of jQuery, you need to do this as follows:
<script src=".../jquery-1.3.2.js"></script> <script src="script-that-needs-132.js"></script> <script>var jQuery132 = $.noConflict(true);</script> <script src=".../jquery-1.7.2.js"></script>
To use the old jQuery, you then wrap the code using it like this:
(function($){
source share