Those lines are inserted by functions hooked to wp_enqueue_scripts as in this example from the Codex:
function my_scripts_method() {
wp_enqueue_script('scriptaculous');
}
add_action('wp_enqueue_scripts', 'my_scripts_method');
The scripts themselves were registered and/or enqueued with wp_register_script or wp_enqueue_script.
You can deregister or dequeue script with wp_deregister_script or wp_dequeueu_script
In your case:
wp_dequeue_script('jquery');
wp-dequeue_script('comment-reply');
But this is a good way to break things. I would not deregister or dequeue core scripts unless I were personally managing a site and would continue to do so for the foreseeable future.
Use Google Libraries should load scripts form Google's servers in little bit safer way that just loading your own local copies.
wp-includes,?ver=3.5.1/?ver=1.8.3and add google's hosted jquery with local fallback. The problem is that i didn't found anything that make reference to that piece of code. – m3tsys Feb 2 at 2:10