Index: wp-includes/script-loader.php
===================================================================
--- wp-includes/script-loader.php	(revision 21756)
+++ wp-includes/script-loader.php	(working copy)
@@ -318,7 +318,6 @@
 	$scripts->add( 'media-views',  "/wp-includes/js/media-views$suffix.js",  array( 'media-models', 'wp-plupload' ), false, 1 );
 	did_action( 'init' ) && $scripts->localize( 'media-views', '_wpMediaViewsL10n', array(
 		'insertMedia'         => __( 'Insert Media' ),
-		'chooseFeatured'      => __( 'Choose a Featured Image' ),
 		'selectMediaSingular' => __( 'Select a media file:' ),
 		'selectMediaMultiple' => __( 'Select one or more media files:' ),
 	) );
Index: wp-admin/includes/post.php
===================================================================
--- wp-admin/includes/post.php	(revision 21756)
+++ wp-admin/includes/post.php	(working copy)
@@ -198,6 +198,14 @@
 			set_post_format( $post_ID, false );
 	}
 
+	// Featured Images
+	if ( isset( $post_data['thumbnail_id'] ) ) {
+		if ( '-1' == $post_data['thumbnail_id'] )
+			delete_post_thumbnail( $post_ID );
+		else
+			set_post_thumbnail( $post_ID, $post_data['thumbnail_id'] );
+	}
+
 	// Meta Stuff
 	if ( isset($post_data['meta']) && $post_data['meta'] ) {
 		foreach ( $post_data['meta'] as $key => $value ) {
Index: wp-admin/includes/meta-boxes.php
===================================================================
--- wp-admin/includes/meta-boxes.php	(revision 21756)
+++ wp-admin/includes/meta-boxes.php	(working copy)
@@ -914,3 +914,82 @@
 	$thumbnail_id = get_post_meta( $post->ID, '_thumbnail_id', true );
 	echo _wp_post_thumbnail_html( $thumbnail_id );
 }
+
+/**
+ * Display featured image meta box.
+ *
+ * @since 3.5.0
+ */
+function featured_image_meta_box() {
+	global $post, $_wp_additional_image_sizes;
+
+	?><script type="text/javascript">
+	jQuery( function($) {
+		var $element     = $('#select-featured-image'),
+			$thumbnailId = $element.find('input[name="thumbnail_id"]'),
+			title        = '<?php _e( "Choose a Featured Image" ); ?>',
+			workflow, setFeaturedImage;
+
+		setFeaturedImage = function( thumbnailId ) {
+			$element.find('img').remove();
+			$element.toggleClass( 'has-featured-image', -1 != thumbnailId );
+			$thumbnailId.val( thumbnailId );
+		};
+
+		$element.on( 'click', '.choose, img', function( event ) {
+			event.preventDefault();
+
+			if ( ! workflow ) {
+				workflow = wp.media();
+				workflow.selection.on( 'add', function( model ) {
+					var sizes = model.get('sizes'),
+						size;
+
+					setFeaturedImage( model.id );
+
+					// @todo: might need a size hierarchy equivalent.
+					if ( sizes )
+						size = sizes['post-thumbnail'] || sizes.medium;
+
+					// @todo: Need a better way of accessing full size
+					// data besides just calling toJSON().
+					size = size || model.toJSON();
+
+					workflow.modal.close();
+					workflow.selection.clear();
+
+					$( '<img />', {
+						src:    size.url,
+						width:  size.width
+					}).prependTo( $element );
+				});
+				workflow.modal.title( title );
+			}
+
+			workflow.modal.open();
+		});
+
+		$element.on( 'click', '.remove', function( event ) {
+			event.preventDefault();
+			setFeaturedImage( -1 );
+		});
+	});
+	</script>
+
+	<?php
+	$thumbnail_id   = get_post_meta( $post->ID, '_thumbnail_id', true );
+	$thumbnail_size = isset( $_wp_additional_image_sizes['post-thumbnail'] ) ? 'post-thumbnail' : 'medium';
+	$thumbnail_html = wp_get_attachment_image( $thumbnail_id, $thumbnail_size );
+
+	$classes = empty( $thumbnail_id ) ? '' : 'has-featured-image';
+
+	?><div id="select-featured-image"
+		class="<?php echo esc_attr( $classes ); ?>"
+		data-post-id="<?php echo esc_attr( $post->ID ); ?>">
+		<?php echo $thumbnail_html; ?>
+		<input type="hidden" name="thumbnail_id" value="<?php echo esc_attr( $thumbnail_id ); ?>" />
+		<a href="#" class="choose button-secondary"><?php _e( 'Choose a Featured Image' ); ?></a>
+		<a href="#" class="remove"><?php _e( 'Remove Featured Image' ); ?></a>
+	</div>
+	<?php
+}
\ No newline at end of file
Index: wp-admin/edit-form-advanced.php
===================================================================
--- wp-admin/edit-form-advanced.php	(revision 21756)
+++ wp-admin/edit-form-advanced.php	(working copy)
@@ -129,7 +129,7 @@
 	add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
 
 if ( current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' ) )
-		add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
+		add_meta_box('featuredimagediv', __('Featured Image'), 'featured_image_meta_box', null, 'side', 'low');
 
 if ( post_type_supports($post_type, 'excerpt') )
 	add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
Index: wp-admin/css/wp-admin.css
===================================================================
--- wp-admin/css/wp-admin.css	(revision 21756)
+++ wp-admin/css/wp-admin.css	(working copy)
@@ -23,6 +23,7 @@
 11.0 - Write/Edit Post Screen
 	11.1 - Custom Fields
 	11.2 - Post Revisions
+	11.3 - Featured Images
 12.0 - Categories
 13.0 - Tags
 14.0 - Media Screen
@@ -3239,7 +3240,35 @@
 	text-decoration: none;
 }
 
+/*------------------------------------------------------------------------------
+  11.3 - Featured Images
+------------------------------------------------------------------------------*/
 
+#select-featured-image {
+	padding: 4px 0;
+	overflow: hidden;
+}
+
+#select-featured-image img {
+	max-width: 100%;
+	height: auto;
+	margin-bottom: 10px;
+}
+
+#select-featured-image a {
+	float: left;
+	clear: both;
+}
+
+#select-featured-image .remove {
+	display: none;
+	margin-top: 10px;
+}
+
+#select-featured-image.has-featured-image .remove {
+	display: inline-block;
+}
+
 /*------------------------------------------------------------------------------
   12.0 - Categories
 ------------------------------------------------------------------------------*/
