If you are creating a wordpress theme with some jquery then you should not load your own version of jquery. WordPress comes with an up to date version which is loaded in the “no conflicts mode”.
if you use the $ sign just wrap your code in this:
jQuery(document).ready(function($) { // $() will work as an alias for jQuery() inside of this function });