You can override the version of jQuery used by WordPress:
function override_jquery() {
if ( is_admin() ) // using a newer version of jQuery will break
stuff in WP admin
return;
wp_deregister_script('jquery');
wp_register_script('jquery', '/path/to/your/version/of/jquery.js');
}
add_action('init', 'override_jquery');