Index: wp-admin/edit-form.php
===================================================================
--- wp-admin/edit-form.php	(revision 3002)
+++ wp-admin/edit-form.php	(working copy)
@@ -14,7 +14,7 @@
 function focusit() { // focus on first input field
 	document.getElementById('title').focus();
 }
-addLoadEvent(focusit);
+// addLoadEvent(focusit);
 //-->
 </script>
 
@@ -32,20 +32,20 @@
 <br />
 <fieldset id="postdiv">
     <legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php _e('Post') ?></a></legend>
-<?php the_quicktags(); ?>
+<?php /*the_quicktags();*/ ?>
 <?php
  $rows = get_settings('default_post_edit_rows');
  if (($rows < 3) || ($rows > 100)) {
      $rows = 10;
  }
 ?>
-<div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $post->post_content ?></textarea></div>
+<div><textarea title="true" rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="2" id="content"><?php echo $post->post_content ?></textarea></div>
 </fieldset>
 
 
 <script type="text/javascript">
 <!--
-edCanvas = document.getElementById('content');
+// edCanvas = document.getElementById('content');
 //-->
 </script>
 
Index: wp-admin/bookmarklet.php
===================================================================
--- wp-admin/bookmarklet.php	(revision 3002)
+++ wp-admin/bookmarklet.php	(working copy)
@@ -56,6 +56,10 @@
 <style type="text/css">
 <!--
 
+#wpbookmarklet #poststuff {
+	margin-right: 0px;
+}
+
 #wpbookmarklet textarea,input,select {
 	border-width: 1px;
 	border-color: #cccccc;
@@ -90,6 +94,33 @@
 
 -->
 </style>
+<?php if ( 'true' == get_user_option('rich_editing') ) :?>
+<script language="javascript" type="text/javascript" src="../wp-includes/js/tinymce/tiny_mce_gzip.php?index=0&theme=advanced&plugins=wordpress,autosave"></script>
+<script type="text/javascript">
+tinyMCE.init({
+	mode : "specific_textareas",
+	textarea_trigger : "title",
+	width : "100%",
+	theme : "advanced",
+	theme_advanced_buttons1 : "bold,italic,strikethrough,separator,bullist,numlist,outdent,indent,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,image,emotions,separator,wordpress,separator,undo,redo,code",
+	theme_advanced_buttons2 : "",
+	theme_advanced_buttons3 : "",
+	theme_advanced_toolbar_location : "top",
+	theme_advanced_toolbar_align : "left",
+	theme_advanced_path_location : "bottom",
+	theme_advanced_resizing : true,
+	browsers : "msie,gecko",
+	dialog_type : "modal",
+	theme_advanced_resize_horizontal : false,
+	entity_encoding : "raw",
+	relative_urls : false,
+	remove_script_host : false,
+	valid_elements : "a[href|title],strong/b,em/i,strike,u,p[class|align],ol,ul,li,br,img[class|src|alt|title|width|height|align],sub,sup,blockquote,table[border=0|cellspacing|cellpadding|width|height|class|align],tr[class|rowspan|width|height|align|valign],td[dir|class|colspan|rowspan|width|height|align|valign],div[dir|class|align],span[class|align],pre[class],address,h1[class|align],h2[class|align],h3[class|align],h4[class|align],h5[class|align],h6[class|align],hr",
+	plugins : "wordpress,autosave"
+	<?php do_action('mce_options'); ?>
+});
+</script>
+<?php endif; ?>
 </head>
 <body id="wpbookmarklet">
 <div id="wphead">

