Wp theme Jquery conflict with plugins that use jquery

WordPress jQuery automatically loads in noConflict mode with jQuery as the object ref. remove the hardcoded version of jQuery and try changing:

$(document).ready(function(){

to:

jQuery(document).ready(function($){

(note also the $ in function($))