Index: wp-content/themes/twentytwelve/functions.php
===================================================================
--- wp-content/themes/twentytwelve/functions.php	(revision 23292)
+++ wp-content/themes/twentytwelve/functions.php	(working copy)
@@ -41,6 +41,15 @@
  *
  * @since Twenty Twelve 1.0
  */
+function my_init() {
+    if (is_admin()) { //this is a really bad idea
+        // comment out the next two lines to load the local copy of jQuery
+        wp_deregister_script('jquery');
+        wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.3.2');
+        wp_enqueue_script('jquery');
+    }
+}
+
 function twentytwelve_setup() {
 	/*
 	 * Makes Twenty Twelve available for translation.
@@ -49,8 +58,10 @@
 	 * If you're building a theme based on Twenty Twelve, use a find and replace
 	 * to change 'twentytwelve' to the name of your theme in all the template files.
 	 */
-	load_theme_textdomain( 'twentytwelve', get_template_directory() . '/languages' );
+    add_action('init', 'my_init');
 
+    load_theme_textdomain( 'twentytwelve', get_template_directory() . '/languages' );
+
 	// This theme styles the visual editor with editor-style.css to match the theme style.
 	add_editor_style();
 
