Index: wp-admin/includes/list-table.php
===================================================================
--- wp-admin/includes/list-table.php	(revision 23299)
+++ wp-admin/includes/list-table.php	(working copy)
@@ -23,6 +23,7 @@
 		'WP_Posts_List_Table' => 'posts',
 		'WP_Media_List_Table' => 'media',
 		'WP_Terms_List_Table' => 'terms',
+		'WP_Menus_List_Table' => 'menus',
 		'WP_Users_List_Table' => 'users',
 		'WP_Comments_List_Table' => 'comments',
 		'WP_Post_Comments_List_Table' => 'comments',
Index: wp-admin/includes/misc.php
===================================================================
--- wp-admin/includes/misc.php	(revision 23299)
+++ wp-admin/includes/misc.php	(working copy)
@@ -346,6 +346,7 @@
 			case 'upload_per_page':
 			case 'edit_tags_per_page':
 			case 'plugins_per_page':
+			case 'nav_menus_per_page':
 			// Network admin
 			case 'sites_network_per_page':
 			case 'users_network_per_page':
Index: wp-admin/includes/class-wp-menus-list-table.php
===================================================================
--- wp-admin/includes/class-wp-menus-list-table.php	(revision 0)
+++ wp-admin/includes/class-wp-menus-list-table.php	(revision 0)
@@ -0,0 +1,146 @@
+<?php
+
+/**
+ * Nav Menus List Table class.
+ *
+ * @package WordPress
+ * @subpackage List_Table
+ * @since 3.6
+ * @access private
+ */
+class WP_Menus_List_Table extends WP_List_Table {
+
+	function __construct( $args = array() ) {
+
+		parent::__construct( array(
+				'plural' => 'menus',
+				'singular' => 'menu',
+				'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
+			) );
+
+	}
+
+	function ajax_user_can() {
+		return current_user_can( 'edit_theme_options' );
+	}
+
+	function prepare_items() {
+
+		$args = array();
+
+		// order & orderby
+		$valid_arg_options = array(
+			'orderby' => $this->get_sortable_columns(),
+			'order' => array( 'asc', 'desc' ),
+		);
+		foreach ( $valid_arg_options as $arg_key => $valid_options ) {
+			if ( ! empty( $_REQUEST[$arg_key] ) && in_array( $_REQUEST[$arg_key], $valid_options ) )
+				$args[$arg_key] = $_REQUEST[$arg_key];
+		}
+
+		// search
+		if ( ! empty( $_REQUEST['s'] ) )
+			$args['search'] = strip_tags( trim( $_REQUEST['s'] ) );
+
+		// pagination
+		$per_page = apply_filters( 'nav_menus_per_page', $this->get_items_per_page( 'nav_menus_per_page' ) );
+		$page = $this->get_pagenum();
+
+		$defaults = array(
+			'orderby' => 'name',
+			'order'	=> 'asc',
+			'offset' => ( $page - 1 ) * $per_page,
+			'number' => $per_page,
+		);
+		$args = wp_parse_args( $args, $defaults );
+		$args = apply_filters( 'nav_menus_table_list_prepare_items_args', $args );
+
+		$_args_to_calc_total_items = $args;
+		unset( $_args_to_calc_total_items['offset'] );
+		$_args_to_calc_total_items['fields'] = 'count';
+		$this->total_items = absint( wp_get_nav_menus( $_args_to_calc_total_items ) );
+
+		$this->items = wp_get_nav_menus( $args );
+
+		$this->set_pagination_args( array(
+			'total_items' => $this->total_items,
+			'per_page' => $per_page,
+		) );
+
+	}
+
+	function get_bulk_actions() {
+		$actions = array();
+		$actions['delete_menus'] = __( 'Delete' );
+
+		return apply_filters( 'nav_menus_bulk_actions', $actions );
+	}
+
+	function get_columns() {
+		$columns = array(
+			'cb'          => '<input type="checkbox" />',
+			'name' 		  => __( 'Menu Name' ),
+			'count'       => __( '# of links' ),
+		);
+
+		return $columns;
+	}
+
+	function get_sortable_columns() {
+		$sortable_columns = array(
+			'name'	=> 'name',
+			'count' => 'count',
+		);
+
+		return $sortable_columns;
+	}
+
+
+	function single_row( $nav_menu, $level = 0 ) {
+		static $row_class = '';
+		$row_class = ( $row_class == '' ? ' class="alternate"' : '' );
+
+		echo '<tr id="' . esc_attr( 'menu-' . $nav_menu->term_id  ) . '"' . $row_class . '>';
+		echo $this->single_row_columns( $nav_menu );
+		echo '</tr>';
+	}
+
+	function column_default( $nav_menu, $column_name ) {
+		return apply_filters( 'manage_nav_menu_custom_column', '', $column_name, $nav_menu->term_id );
+	}
+
+
+	function column_cb( $nav_menu ) {
+		return '<label class="screen-reader-text" for="' . esc_attr( 'cb-select-' . $nav_menu->term_id . '">' . sprintf( __( 'Select %s' ), $nav_menu->name ) ) . '"></label>' . '<input type="checkbox" name="delete_menus[]" value="' . esc_attr( $nav_menu->term_id ) . '" id="' . esc_attr( 'cb-select-' . $nav_menu->term_id ) . '" />';
+
+		return '&nbsp;';
+	}
+
+	function column_name( $nav_menu ) {
+
+		$edit_link = esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => absint( $nav_menu->term_id ) ), admin_url( 'nav-menus.php' ) ) );
+		$delete_link = wp_nonce_url( add_query_arg( array( 'action' => 'delete', 'menu' => absint( $nav_menu->term_id ) ), admin_url( 'nav-menus.php' ) ), 'delete-nav_menu-' . $nav_menu->term_id );
+
+		$out = '<strong><a class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $nav_menu->name ) ) . '">' . $nav_menu->name . '</a></strong><br />';
+
+		$actions = array();
+		$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
+		$actions['delete'] = "<a class='delete-menu' href='" . $delete_link . "'>" . __( 'Delete' ) . "</a>";
+
+
+		$actions = apply_filters( 'nav_menu_row_actions', $actions, $nav_menu );
+
+		$out .= $this->row_actions( $actions );
+
+		return $out;
+	}
+
+	function column_count( $nav_menu ) {
+		return $nav_menu->count;
+	}
+
+	function should_display_search() {
+		return apply_filters( 'nav_menu_table_list_should_display_search', ( $this->total_items > 20 ) );
+	}
+
+}
\ No newline at end of file
Index: wp-admin/includes/nav-menu.php
===================================================================
--- wp-admin/includes/nav-menu.php	(revision 23299)
+++ wp-admin/includes/nav-menu.php	(working copy)
@@ -81,11 +81,15 @@
 
 		$title = empty( $item->label ) ? $title : $item->label;
 
+		$submenu_text = '';
+		if (0 == $depth)
+			$submenu_text = 'style="display: none;"';
+
 		?>
 		<li id="menu-item-<?php echo $item_id; ?>" class="<?php echo implode(' ', $classes ); ?>">
 			<dl class="menu-item-bar">
 				<dt class="menu-item-handle">
-					<span class="item-title"><?php echo esc_html( $title ); ?></span>
+					<span class="item-title"><?php echo esc_html( $title ); ?> <span class="is-submenu" <?php echo $submenu_text; ?>><?php _e( 'sub item' ); ?></span></span>
 					<span class="item-controls">
 						<span class="item-type"><?php echo esc_html( $item->type_label ); ?></span>
 						<span class="item-order hide-if-js">
@@ -382,14 +386,22 @@
  **/
 function wp_nav_menu_setup() {
 	// Register meta boxes
-	if ( wp_get_nav_menus() )
-		add_meta_box( 'nav-menu-theme-locations', __( 'Theme Locations' ), 'wp_nav_menu_locations_meta_box' , 'nav-menus', 'side', 'default' );
-	add_meta_box( 'add-custom-links', __('Custom Links'), 'wp_nav_menu_item_link_meta_box', 'nav-menus', 'side', 'default' );
-	wp_nav_menu_post_type_meta_boxes();
-	wp_nav_menu_taxonomy_meta_boxes();
+	if ( wp_get_nav_menus() && ! isset( $_POST['menu-name'] ) && ! isset( $_GET['action'] ) || isset( $_GET['_wpnonce'] ) )
+		add_meta_box( 'nav-menu-theme-locations', __( 'Menus within your theme' ), 'wp_nav_menu_locations_meta_box' , 'nav-menus', 'side', 'default' );
 
+	$nav_menus = wp_get_nav_menus( array('orderby' => 'name') );
+
+	if ( empty( $nav_menus ) || isset( $_POST['menu-name'] ) || isset( $_GET['action'] ) && ! isset( $_GET['_wpnonce'] ) ) {
+		wp_nav_menu_post_type_meta_boxes();
+		add_meta_box( 'add-common-links', __('Common Links'), 'wp_nav_menu_item_common_link_meta_box', 'nav-menus', 'side', 'core' );
+		add_meta_box( 'add-custom-links', __('Custom Links'), 'wp_nav_menu_item_link_meta_box', 'nav-menus', 'side', 'default' );
+		wp_nav_menu_taxonomy_meta_boxes();
+	}
+
 	// Register advanced menu items (columns)
-	add_filter( 'manage_nav-menus_columns', 'wp_nav_menu_manage_columns');
+	if ( empty( $nav_menus ) || isset( $_POST['menu-name'] ) || isset( $_GET['action'] ) && ! isset( $_GET['_wpnonce'] ) ) {
+		add_filter( 'manage_nav-menus_columns', 'wp_nav_menu_manage_columns');
+	}
 
 	// If first time editing, disable advanced items by default.
 	if( false === get_user_option( 'managenav-menuscolumnshidden' ) ) {
@@ -411,7 +423,7 @@
 	if ( get_user_option( 'metaboxhidden_nav-menus' ) !== false || ! is_array($wp_meta_boxes) )
 		return;
 
-	$initial_meta_boxes = array( 'nav-menu-theme-locations', 'add-custom-links', 'add-page', 'add-category' );
+	$initial_meta_boxes = array( 'nav-menu-theme-locations', 'add-page', 'add-common-links', 'add-custom-links', 'add-category' );
 	$hidden_meta_boxes = array();
 
 	foreach ( array_keys($wp_meta_boxes['nav-menus']) as $context ) {
@@ -445,7 +457,7 @@
 		$post_type = apply_filters( 'nav_menu_meta_box_object', $post_type );
 		if ( $post_type ) {
 			$id = $post_type->name;
-			add_meta_box( "add-{$id}", $post_type->labels->name, 'wp_nav_menu_item_post_type_meta_box', 'nav-menus', 'side', 'default', $post_type );
+			add_meta_box( "add-{$id}", $post_type->labels->name, 'wp_nav_menu_item_post_type_meta_box', 'nav-menus', 'side', 'high', $post_type );
 		}
 	}
 }
@@ -489,7 +501,7 @@
 	$menu_locations = get_nav_menu_locations();
 	$num_locations = count( array_keys($locations) );
 
-	echo '<p class="howto">' . sprintf( _n('Your theme supports %s menu. Select which menu you would like to use.', 'Your theme supports %s menus. Select which menu appears in each location.', $num_locations ), number_format_i18n($num_locations) ) . '</p>';
+	echo '<p class="howto">' . _n('Select a menu to use within your theme.', 'Select the menus you will use in your theme.', $num_locations ) . '</p>';
 
 	foreach ( $locations as $location => $description ) {
 		?>
@@ -512,13 +524,63 @@
 	}
 	?>
 	<p class="button-controls">
-		<?php submit_button( __( 'Save' ), 'primary right', 'nav-menu-locations', false, disabled( $nav_menu_selected_id, 0, false ) ); ?>
+		<?php submit_button( __( 'Save' ), 'primary right', 'nav-menu-locations', false ); ?>
 		<span class="spinner"></span>
 	</p>
 	<?php
 }
 
 /**
+ * Displays a metabox for the common links menu item.
+ *
+ * @since 3.0.0
+ */
+function wp_nav_menu_item_common_link_meta_box() {
+	global $blog_id, $_nav_menu_placeholder, $nav_menu_selected_id;
+	$_nav_menu_placeholder = 0 > $_nav_menu_placeholder ? $_nav_menu_placeholder - 1 : -1;
+
+	$removed_args = array(
+		'action',
+		'customlink-tab',
+		'edit-menu-item',
+		'menu-item',
+		'page-tab',
+		'_wpnonce',
+	);
+
+	$common_links = array(
+		array(
+			'url' => get_home_url(),
+			'text' => __( 'Home' )
+		),
+		array(
+			'url' => get_site_url( $blog_id, '/wp-login.php' ),
+			'text' => __( 'Log in' )
+		)
+	);
+
+	$common_links = apply_filters( 'nav_menus_common_links', $common_links );
+	?>
+	<div class="commonlinkdiv" id="commonlinkdiv">
+
+		<div class="common-links">
+			<?php foreach ( $common_links as $link ) { ?>
+			<label class="menu-item-title"><input type="checkbox" class="menu-item-checkbox" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-object-id]" value="<?php echo $link['url']; ?>" title="<?php echo $link['text']; ?>"> <?php echo $link['text']; ?></label>
+			<?php } ?>
+		</div>
+
+		<p class="button-controls">
+			<span class="add-to-menu">
+				<input type="submit"<?php disabled( $nav_menu_selected_id, 0 ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e('Add to Menu'); ?>" name="add-common-menu-item" id="submit-commonlinkdiv" />
+				<span class="spinner"></span>
+			</span>
+		</p>
+
+	</div><!-- /.commonlinkdiv -->
+	<?php
+}
+
+/**
  * Displays a metabox for the custom links menu item.
  *
  * @since 3.0.0
@@ -554,7 +616,7 @@
 
 			<p id="menu-item-name-wrap">
 				<label class="howto" for="custom-menu-item-name">
-					<span><?php _e('Label'); ?></span>
+					<span><?php _e('Link Text'); ?></span>
 					<input id="custom-menu-item-name" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-title]" type="text" class="regular-text menu-item-textbox input-with-default-title" title="<?php esc_attr_e('Menu Item'); ?>" />
 				</label>
 			</p>
@@ -1086,7 +1148,7 @@
 		$menu_items = wp_get_nav_menu_items( $menu->term_id, array('post_status' => 'any') );
 		$result = '<div id="menu-instructions" class="post-body-plain';
 		$result .= ( ! empty($menu_items) ) ? ' menu-instructions-inactive">' : '">';
-		$result .= '<p>' . __('Select menu items (pages, categories, links) from the boxes at left to begin building your custom menu.') . '</p>';
+		$result .= '<p>' . __('Next, add menu items (i.e. pages, links, categories) from the column on the left.') . '</p>';
 		$result .= '</div>';
 
 		if( empty($menu_items) )
@@ -1158,5 +1220,32 @@
 	foreach( (array) $menu_items_to_delete as $menu_item_id )
 		wp_delete_post( $menu_item_id, true );
 }
+add_action('admin_head-nav-menus.php', '_wp_delete_orphaned_draft_menu_items');
 
-add_action('admin_head-nav-menus.php', '_wp_delete_orphaned_draft_menu_items');
+/**
+ * Delete nav menus from the nav menu management screen
+ *
+ * @access private
+ * @since 3.6
+ */
+function _wp_delete_nav_menu( $nav_menu_id ) {
+
+	if ( ! is_nav_menu( $nav_menu_id ) )
+		return;
+
+	$deleted_nav_menu = wp_get_nav_menu_object( $nav_menu_id );
+	$delete_nav_menu = wp_delete_nav_menu( $nav_menu_id );
+
+	if ( is_wp_error( $delete_nav_menu ) )
+		return $delete_nav_menu;
+
+	// Remove this menu from any locations.
+	$locations = get_theme_mod( 'nav_menu_locations' );
+	foreach ( (array) $locations as $location => $menu_id ) {
+		if ( $menu_id == $nav_menu_id )
+			$locations[ $location ] = 0;
+	}
+	set_theme_mod( 'nav_menu_locations', $locations );
+
+	return true;
+}
\ No newline at end of file
Index: wp-admin/js/nav-menu.js
===================================================================
--- wp-admin/js/nav-menu.js	(revision 23299)
+++ wp-admin/js/nav-menu.js	(working copy)
@@ -46,8 +46,10 @@
 				this.initSortables();
 
 			this.initToggles();
-
-			this.initTabManager();
+			
+			this.messageFadeIn();
+			
+			this.initAccessibility();
 		},
 
 		jQueryExtensions : function() {
@@ -84,18 +86,53 @@
 					});
 					return result;
 				},
+				shiftHorizontally : function(dir) {
+					return this.each(function(){
+						var t = $(this),
+							depth = t.menuItemDepth(),
+							newDepth = depth + dir;
+
+						// Change .menu-item-depth-n class
+						t.moveHorizontally(newDepth, depth);
+					});
+				},
+				moveHorizontally : function(newDepth, depth) {
+					return this.each(function(){
+						var t = $(this),
+							children = t.childMenuItems(),
+							diff = newDepth - depth,
+							subItemText = t.find('.is-submenu');
+
+						// Change .menu-item-depth-n class
+						t.updateDepthClass(newDepth, depth).updateParentMenuItemDBId();
+
+						// If it has children, move those too
+						if (children) {
+							children.each(function( index ) {
+								var thisDepth = $(this).menuItemDepth(),
+									newDepth = thisDepth + diff;
+								$(this).updateDepthClass(newDepth, thisDepth).updateParentMenuItemDBId();
+							});
+						}
+
+						// Show "Sub item" helper text
+						if (0 === newDepth)
+							subItemText.hide();
+						else
+							subItemText.show();
+					});
+				},
 				updateParentMenuItemDBId : function() {
 					return this.each(function(){
 						var item = $(this),
 							input = item.find('.menu-item-data-parent-id'),
-							depth = item.menuItemDepth(),
-							parent = item.prev();
+							depth = parseInt(item.menuItemDepth()),
+							parentDepth = depth - 1;
+							parent = item.prevAll('.menu-item-depth-' + parentDepth).first();
 
 						if( depth == 0 ) { // Item is on the top level, has no parent
 							input.val(0);
 						} else { // Find the parent item, and retrieve its object id.
-							while( ! parent[0] || ! parent[0].className || -1 == parent[0].className.indexOf('menu-item') || ( parent.menuItemDepth() != depth - 1 ) )
-								parent = parent.prev();
 							input.val( parent.find('.menu-item-data-db-id').val() );
 						}
 					});
@@ -222,7 +259,127 @@
 				}
 			});
 		},
+		
+		initAccessibility : function() {
+			$('.item-edit').on('focus', function () {
+				$(this).on('keydown', function (e) {
 
+					// Bail if it's not an arrow key
+					if (e.which !== 37 && e.which !== 38 && e.which !== 39 && e.which !== 40)
+						return;
+
+					// Avoid multiple keydown events
+					$(this).off('keydown');
+
+					var menuItems = $('#menu-to-edit li');
+						menuItemsCount = menuItems.length,
+						thisItem = $(this).parents('li.menu-item'),
+						thisItemChildren = thisItem.childMenuItems(),
+						thisItemData = thisItem.getItemData(),
+						thisItemDepth = parseInt(thisItem.menuItemDepth()),
+						thisItemPosition = parseInt(thisItem.index()),
+						nextItem = thisItem.next(),
+						nextItemChildren = nextItem.childMenuItems(),
+						nextItemDepth = parseInt(nextItem.menuItemDepth()) + 1,
+						prevItem = thisItem.prev(),
+						prevItemDepth = parseInt(prevItem.menuItemDepth()),
+						prevItemId = prevItem.getItemData()['menu-item-db-id'];
+
+					// Bail if there is only one menu item
+					if (1 === menuItemsCount)
+						return;
+						
+					// If RTL, swap left/right arrows
+					var arrows = { '38' : 'up', '40' : 'down', '37' : 'left', '39' : 'right' };
+					if ($('body').hasClass('rtl'))
+						arrows = { '38' : 'up', '40' : 'down', '39' : 'left', '37' : 'right' };
+
+					switch (arrows[e.which]) {
+					case 'up':
+						var newItemPosition = thisItemPosition - 1;
+
+						// Already at top
+						if (0 === thisItemPosition)
+							break;
+
+						// If a sub item is moved to top, shift it to 0 depth
+						if (0 === newItemPosition && 0 !== thisItemDepth)
+							thisItem.moveHorizontally(0, thisItemDepth);
+
+						// If prev item is sub item, shift to match depth
+						if (0 !== prevItemDepth)
+							thisItem.moveHorizontally(prevItemDepth, thisItemDepth);
+
+						// Does this item have sub items?
+						if (thisItemChildren) {
+							var items = thisItem.add(thisItemChildren);
+							// Move the entire block
+							items.detach().insertBefore(menuItems.eq(newItemPosition));
+						} else {
+							thisItem.detach().insertBefore(menuItems.eq(newItemPosition));
+						}
+						break;
+					case 'down':
+						// Does this item have sub items?
+						if (thisItemChildren) {
+							var items = thisItem.add(thisItemChildren),
+								nextItem = menuItems.eq(items.length + thisItemPosition),
+								nextItemChildren = 0 !== nextItem.childMenuItems().length;
+
+							if (nextItemChildren) {
+								var newDepth = parseInt(nextItem.menuItemDepth()) + 1;
+								thisItem.moveHorizontally(newDepth, thisItemDepth);
+							}
+
+							// Have we reached the bottom?
+							if (menuItemsCount === thisItemPosition + items.length)
+								break;
+
+							items.detach().insertAfter(menuItems.eq(thisItemPosition + items.length));
+						} else {
+							// If next item has sub items, shift depth
+							if (0 !== nextItemChildren.length)
+								thisItem.moveHorizontally(nextItemDepth, thisItemDepth);
+
+							// Have we reached the bottom
+							if (menuItemsCount === thisItemPosition + 1)
+								break;
+							thisItem.detach().insertAfter(menuItems.eq(thisItemPosition + 1));
+						}
+						break;
+					case 'left':
+						// As far left as possible
+						if (0 === thisItemDepth)
+							break;
+						thisItem.shiftHorizontally(-1);
+						break;
+					case 'right':
+						// Can't be sub item at top
+						if (0 === thisItemPosition)
+							break;
+						// Already sub item of prevItem
+						if (thisItemData['menu-item-parent-id'] === prevItemId)
+							break;
+						thisItem.shiftHorizontally(1);
+						break;
+					}
+					api.registerChange();
+					// Put focus back on same menu item
+					$('#edit-' + thisItemData['menu-item-db-id']).focus();
+					return false;
+				});
+			}).blur(function () {
+				$(this).off('keydown');
+			});
+		},
+		
+		messageFadeIn : function() {
+			var messages = $('#message');
+			
+			// Visual change when users save menus multiple times in a row
+			messages.slideDown('slow');
+		},
+
 		initToggles : function() {
 			// init postboxes
 			postboxes.add_postbox_toggles('nav-menus');
@@ -245,6 +402,9 @@
 				menuEdge = api.menuList.offset().left,
 				body = $('body'), maxChildDepth,
 				menuMaxDepth = initialMenuMaxDepth();
+				
+			if( 0 != $('#menu-to-edit li').length )
+				$('.drag-instructions').show();
 
 			// Use the right edge if RTL.
 			menuEdge += api.isRTL ? api.menuList.width() : 0;
@@ -307,6 +467,13 @@
 
 					// Return child elements to the list
 					children = transport.children().insertAfter(ui.item);
+					
+					// Add "sub menu" description
+					var subMenuTitle = ui.item.find('.item-title .is-submenu');
+					if (0 < currentDepth)
+						subMenuTitle.show();
+					else
+						subMenuTitle.hide();
 
 					// Update depth classes
 					if( depthChange != 0 ) {
@@ -327,9 +494,6 @@
 						ui.item[0].style.left = 'auto';
 						ui.item[0].style.right = 0;
 					}
-
-					// The width of the tab bar might have changed. Just in case.
-					api.refreshMenuTabs( true );
 				},
 				change: function(e, ui) {
 					// Make sure the placeholder is inside the menu.
@@ -433,6 +597,10 @@
 					$("#submit-customlinkdiv").click();
 				}
 			});
+			$('#submit-commonlinkdiv').click(function () {
+				api.addCommonLink();
+				return false;
+			});
 		},
 
 		/**
@@ -461,6 +629,8 @@
 				if( '' == $t.val() )
 					$t.addClass( name ).val( $t.data(name) );
 			});
+			
+			$('.blank-slate .input-with-default-title').focus();
 		},
 
 		attachThemeLocationsListeners : function() {
@@ -474,6 +644,7 @@
 				loc.find('.spinner').show();
 				$.post( ajaxurl, params, function(r) {
 					loc.find('.spinner').hide();
+					$('.menu-location-success').slideDown('slow');
 				});
 				return false;
 			});
@@ -521,7 +692,23 @@
 				api.processQuickSearchQueryResponse(menuMarkup, params, panel);
 			});
 		},
+		
+		addCommonLink : function() {
+			
+			$('#commonlinkdiv input[type="checkbox"]:checked').each(function( index ) {
+				var url = $(this).val(),
+					linkText = $(this).prop('title'),
+					processMethod = api.addMenuItemToTop;
 
+				// Show the ajax spinner
+				$('.commonlinkdiv .spinner').show();
+				api.addLinkToMenu( url, linkText, processMethod, function() {
+					// Remove the ajax spinner
+					$('.commonlinkdiv .spinner').hide();
+				});
+			});
+		},
+
 		addCustomLink : function( processMethod ) {
 			var url = $('#custom-menu-item-url').val(),
 				label = $('#custom-menu-item-name').val();
@@ -572,6 +759,9 @@
 			$.post( ajaxurl, params, function(menuMarkup) {
 				var ins = $('#menu-instructions');
 				processMethod(menuMarkup, params);
+				// Make it stand out a bit more visually, by adding a fadeIn
+				$('li.pending').hide().fadeIn('slow');
+				$('.drag-instructions').show();
 				if( ! ins.hasClass('menu-instructions-inactive') && ins.siblings().length )
 					ins.addClass('menu-instructions-inactive');
 				callback();
@@ -604,7 +794,7 @@
 				};
 			} else {
 				// Make the post boxes read-only, as they can't be used yet
-				$('#menu-settings-column').find('input,select').prop('disabled', true).end().find('a').attr('href', '#').unbind('click');
+				$('#menu-settings-column').find('input,select').end().find('a').attr('href', '#').unbind('click');
 			}
 		},
 
@@ -688,139 +878,6 @@
 			});
 		},
 
-		initTabManager : function() {
-			var fixed = $('.nav-tabs-wrapper'),
-				fluid = fixed.children('.nav-tabs'),
-				active = fluid.children('.nav-tab-active'),
-				tabs = fluid.children('.nav-tab'),
-				tabsWidth = 0,
-				fixedRight, fixedLeft,
-				arrowLeft, arrowRight, resizeTimer, css = {},
-				marginFluid = api.isRTL ? 'margin-right' : 'margin-left',
-				marginFixed = api.isRTL ? 'margin-left' : 'margin-right',
-				msPerPx = 2;
-
-			/**
-			 * Refreshes the menu tabs.
-			 * Will show and hide arrows where necessary.
-			 * Scrolls to the active tab by default.
-			 *
-			 * @param savePosition {boolean} Optional. Prevents scrolling so
-			 * 		  that the current position is maintained. Default false.
-			 **/
-			api.refreshMenuTabs = function( savePosition ) {
-				var fixedWidth = fixed.width(),
-					margin = 0, css = {};
-				fixedLeft = fixed.offset().left;
-				fixedRight = fixedLeft + fixedWidth;
-
-				if( !savePosition )
-					active.makeTabVisible();
-
-				// Prevent space from building up next to the last tab if there's more to show
-				if( tabs.last().isTabVisible() ) {
-					margin = fixed.width() - tabsWidth;
-					margin = margin > 0 ? 0 : margin;
-					css[marginFluid] = margin + 'px';
-					fluid.animate( css, 100, "linear" );
-				}
-
-				// Show the arrows only when necessary
-				if( fixedWidth > tabsWidth )
-					arrowLeft.add( arrowRight ).hide();
-				else
-					arrowLeft.add( arrowRight ).show();
-			}
-
-			$.fn.extend({
-				makeTabVisible : function() {
-					var t = this.eq(0), left, right, css = {}, shift = 0;
-
-					if( ! t.length ) return this;
-
-					left = t.offset().left;
-					right = left + t.outerWidth();
-
-					if( right > fixedRight )
-						shift = fixedRight - right;
-					else if ( left < fixedLeft )
-						shift = fixedLeft - left;
-
-					if( ! shift ) return this;
-
-					css[marginFluid] = "+=" + api.negateIfRTL * shift + 'px';
-					fluid.animate( css, Math.abs( shift ) * msPerPx, "linear" );
-					return this;
-				},
-				isTabVisible : function() {
-					var t = this.eq(0),
-						left = t.offset().left,
-						right = left + t.outerWidth();
-					return ( right <= fixedRight && left >= fixedLeft ) ? true : false;
-				}
-			});
-
-			// Find the width of all tabs
-			tabs.each(function(){
-				tabsWidth += $(this).outerWidth(true);
-			});
-
-			// Set up fixed margin for overflow, unset padding
-			css['padding'] = 0;
-			css[marginFixed] = (-1 * tabsWidth) + 'px';
-			fluid.css( css );
-
-			// Build tab navigation
-			arrowLeft = $('<div class="nav-tabs-arrow nav-tabs-arrow-left"><a>&laquo;</a></div>');
-			arrowRight = $('<div class="nav-tabs-arrow nav-tabs-arrow-right"><a>&raquo;</a></div>');
-			// Attach to the document
-			fixed.wrap('<div class="nav-tabs-nav"/>').parent().prepend( arrowLeft ).append( arrowRight );
-
-			// Set the menu tabs
-			api.refreshMenuTabs();
-			// Make sure the tabs reset on resize
-			$(window).resize(function() {
-				if( resizeTimer ) clearTimeout(resizeTimer);
-				resizeTimer = setTimeout( api.refreshMenuTabs, 200);
-			});
-
-			// Build arrow functions
-			$.each([{
-					arrow : arrowLeft,
-					next : "next",
-					last : "first",
-					operator : "+="
-				},{
-					arrow : arrowRight,
-					next : "prev",
-					last : "last",
-					operator : "-="
-				}], function(){
-				var that = this;
-				this.arrow.mousedown(function(){
-					var marginFluidVal = Math.abs( parseInt( fluid.css(marginFluid) ) ),
-						shift = marginFluidVal,
-						css = {};
-
-					if( "-=" == that.operator )
-						shift = Math.abs( tabsWidth - fixed.width() ) - marginFluidVal;
-
-					if( ! shift ) return;
-
-					css[marginFluid] = that.operator + shift + 'px';
-					fluid.animate( css, shift * msPerPx, "linear" );
-				}).mouseup(function(){
-					var tab, next;
-					fluid.stop(true);
-					tab = tabs[that.last]();
-					while( (next = tab[that.next]()) && next.length && ! next.isTabVisible() ) {
-						tab = next;
-					}
-					tab.makeTabVisible();
-				});
-			});
-		},
-
 		eventOnClickEditLink : function(clickedEl) {
 			var settings, item,
 			matchedSection = /#(.*)$/.exec(clickedEl.href);
@@ -945,8 +1002,10 @@
 					var ins = $('#menu-instructions');
 					el.remove();
 					children.shiftDepthClass(-1).updateParentMenuItemDBId();
-					if( ! ins.siblings().length )
+					if( 0 == $('#menu-to-edit li').length ) {
+						$('.drag-instructions').hide();
 						ins.removeClass('menu-instructions-inactive');
+					}
 				});
 		},
 
Index: wp-admin/nav-menus.php
===================================================================
--- wp-admin/nav-menus.php	(revision 23299)
+++ wp-admin/nav-menus.php	(working copy)
@@ -221,43 +221,43 @@
 		if ( is_nav_menu_item( $menu_item_id ) && wp_delete_post( $menu_item_id, true ) )
 			$messages[] = '<div id="message" class="updated"><p>' . __('The menu item has been successfully deleted.') . '</p></div>';
 		break;
+
 	case 'delete':
 		check_admin_referer( 'delete-nav_menu-' . $nav_menu_selected_id );
-
 		if ( is_nav_menu( $nav_menu_selected_id ) ) {
-			$deleted_nav_menu = wp_get_nav_menu_object( $nav_menu_selected_id );
-			$delete_nav_menu = wp_delete_nav_menu( $nav_menu_selected_id );
-
-			if ( is_wp_error($delete_nav_menu) ) {
-				$messages[] = '<div id="message" class="error"><p>' . $delete_nav_menu->get_error_message() . '</p></div>';
-			} else {
-				// Remove this menu from any locations.
-				$locations = get_theme_mod( 'nav_menu_locations' );
-				foreach ( (array) $locations as $location => $menu_id ) {
-					if ( $menu_id == $nav_menu_selected_id )
-						$locations[ $location ] = 0;
-				}
-				set_theme_mod( 'nav_menu_locations', $locations );
-				$messages[] = '<div id="message" class="updated"><p>' . __('The menu has been successfully deleted.') . '</p></div>';
-				// Select the next available menu
-				$nav_menu_selected_id = 0;
-				$_nav_menus = wp_get_nav_menus( array('orderby' => 'name') );
-				foreach( $_nav_menus as $index => $_nav_menu ) {
-					if ( strcmp( $_nav_menu->name, $deleted_nav_menu->name ) >= 0
-					 || $index == count( $_nav_menus ) - 1 ) {
-						$nav_menu_selected_id = $_nav_menu->term_id;
-						break;
-					}
-				}
-			}
-			unset( $delete_nav_menu, $deleted_nav_menu, $_nav_menus );
+			$deletion = _wp_delete_nav_menu( $nav_menu_selected_id );
 		} else {
 			// Reset the selected menu
 			$nav_menu_selected_id = 0;
 			unset( $_REQUEST['menu'] );
 		}
+		
+		if ( ! isset( $deletion ) )
+			break;
+
+		if ( is_wp_error( $deletion ) )
+			$messages[] = '<div id="message" class="error"><p>' . $deletion->get_error_message() . '</p></div>';
+		else
+			$messages[] = '<div id="message" class="updated"><p>' . __( 'The menu has been successfully deleted.' ) . '</p></div>';
 		break;
 
+	case 'delete_menus':
+		check_admin_referer( 'nav_menus_bulk_actions' );
+		foreach ( $_REQUEST['delete_menus'] as $menu_id_to_delete ) {
+			if ( ! is_nav_menu( $menu_id_to_delete ) )
+				continue;
+
+			$deletion = _wp_delete_nav_menu( $menu_id_to_delete );
+			if ( is_wp_error( $deletion ) ) {
+				$messages[] = '<div id="message" class="error"><p>' . $deletion->get_error_message() . '</p></div>';
+				$deletion_error = true;
+			}
+		}
+
+		if ( empty( $deletion_error ) )
+			$messages[] = '<div id="message" class="updated"><p>' . __( 'Selected menus have been successfully deleted.' ) . '</p></div>';
+		break;
+
 	case 'update':
 		check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' );
 
@@ -367,7 +367,7 @@
 
 				do_action( 'wp_update_nav_menu', $nav_menu_selected_id );
 
-				$messages[] = '<div id="message" class="updated"><p>' . sprintf( __('The <strong>%s</strong> menu has been updated.'), $nav_menu_selected_title ) . '</p></div>';
+				$messages[] = '<div id="message" class="updated"><p>' . sprintf( __('<strong>%1$s</strong> has been updated. <a href="%2$s">Assign a theme location for this menu</a>, or <a href="%3$s">use it in a widget</a>.'), $nav_menu_selected_title, admin_url( 'nav-menus.php' ), admin_url( 'widgets.php' ) ) . '</p></div>';
 				unset( $menu_items, $unsorted_menu_items );
 			}
 		}
@@ -434,6 +434,8 @@
 if ( ! current_theme_supports( 'menus' ) && ! wp_get_nav_menus() )
 	$messages[] = '<div id="message" class="updated"><p>' . __('The current theme does not natively support menus, but you can use the &#8220;Custom Menu&#8221; widget to add any menus you create here to the theme&#8217;s sidebar.') . '</p></div>';
 
+add_screen_option( 'per_page', array('label' => _x( 'Menus', 'nav menus per page (screen options)' )) );
+
 get_current_screen()->add_help_tab( array(
 'id'		=> 'overview',
 'title'		=> __('Overview'),
@@ -455,20 +457,31 @@
 	'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 );
 
+// prep the table view
+$wp_list_table = _get_list_table( 'WP_Menus_List_Table' );
+$pagenum = $wp_list_table->get_pagenum();
+$wp_list_table->prepare_items();
+
 // Get the admin header
 require_once( './admin-header.php' );
 ?>
 <div class="wrap">
 	<?php screen_icon(); ?>
-	<h2><?php esc_html_e('Menus'); ?></h2>
+	<h2 class="nav-tab-wrapper">
+		<a href="<?php echo admin_url( 'nav-menus.php' ); ?>" class="nav-tab<?php if ( ! isset( $_POST['menu-name'] ) && ! isset( $_GET['action'] ) || isset( $_GET['_wpnonce'] ) ) echo ' nav-tab-active'; ?>"><?php esc_html_e('Manage Menus'); ?></a>
+		<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0, ), admin_url( 'nav-menus.php' ) ) ); ?>" class="nav-tab<?php if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) echo ' nav-tab-active'; ?>"><?php esc_html_e('Add Menu'); ?></a>
+	</h2>
 	<?php
 	foreach( $messages as $message ) :
 		echo $message . "\n";
 	endforeach;
 	?>
+	<div class="updated menu-location-success" style="display: none;"><p><?php echo sprintf( __('The menus within your theme have been updated. <a href="%s">Visit your site</a> to preview these changes.'), get_site_url() ); ?></p></div>
 	<div id="nav-menus-frame">
-	<div id="menu-settings-column" class="metabox-holder<?php if ( !$nav_menu_selected_id ) { echo ' metabox-holder-disabled'; } ?>">
+	<div id="menu-settings-column" class="metabox-holder<?php if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] || empty( $nav_menus ) ) { echo ' metabox-holder-disabled'; } ?>">
 
+		<div class="clear"></div>
+
 		<form id="nav-menu-meta" action="<?php echo admin_url( 'nav-menus.php' ); ?>" class="nav-menu-meta" method="post" enctype="multipart/form-data">
 			<input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" />
 			<input type="hidden" name="action" value="add-menu-item" />
@@ -479,55 +492,27 @@
 	</div><!-- /#menu-settings-column -->
 	<div id="menu-management-liquid">
 		<div id="menu-management">
-			<div id="select-nav-menu-container" class="hide-if-js">
-				<form id="select-nav-menu" action="">
-					<strong><label for="select-nav-menu"><?php esc_html_e( 'Select Menu:' ); ?></label></strong>
-					<select class="select-nav-menu" name="menu">
-						<?php foreach( (array) $nav_menus as $_nav_menu ) : ?>
-							<option value="<?php echo esc_attr($_nav_menu->term_id) ?>" <?php selected($nav_menu_selected_id, $_nav_menu->term_id); ?>>
-								<?php echo esc_html( $_nav_menu->truncated_name ); ?>
-							</option>
-						<?php endforeach; ?>
-						<option value="0"><?php esc_html_e('Add New Menu'); ?></option>
-					</select>
-					<input type="hidden" name="action" value="edit" />
-					<?php submit_button( __( 'Select' ), 'secondary', 'select_menu', false ); ?>
+			<?php if ( ! isset( $_POST['menu-name'] ) && ! empty( $nav_menus ) && ! isset( $_GET['action'] ) || ( isset( $_GET['_wpnonce'] ) && 0 != count( $nav_menus ) ) ) : ?>
+
+				<form id="menu-list-form" action="" method="post">
+
+					<?php
+					if ( $wp_list_table->should_display_search() )
+						$wp_list_table->search_box( __( 'Search Menus' ), 'menus' ); 
+					?>
+
+					<?php $wp_list_table->display(); ?>
+
+					<input type="hidden" name="_total" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg('total_items') ); ?>" />
+					<input type="hidden" name="_per_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg('per_page') ); ?>" />
+					<input type="hidden" name="_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg('page') ); ?>" />
+					<?php wp_nonce_field( 'nav_menus_bulk_actions' ); ?>
+
 				</form>
-			</div>
-			<div class="nav-tabs-wrapper">
-			<div class="nav-tabs">
-				<?php
-				foreach( (array) $nav_menus as $_nav_menu ) :
-					if ( $nav_menu_selected_id == $_nav_menu->term_id ) : ?><span class="nav-tab nav-tab-active">
-							<?php echo esc_html( $_nav_menu->truncated_name ); ?>
-						</span><?php else : ?><a href="<?php
-							echo esc_url(add_query_arg(
-								array(
-									'action' => 'edit',
-									'menu' => $_nav_menu->term_id,
-								),
-								admin_url( 'nav-menus.php' )
-							));
-						?>" class="nav-tab hide-if-no-js">
-							<?php echo esc_html( $_nav_menu->truncated_name ); ?>
-						</a><?php endif;
-				endforeach;
-				if ( 0 == $nav_menu_selected_id ) : ?><span class="nav-tab menu-add-new nav-tab-active">
-					<?php printf( '<abbr title="%s">+</abbr>', esc_html__( 'Add menu' ) ); ?>
-				</span><?php else : ?><a href="<?php
-					echo esc_url(add_query_arg(
-						array(
-							'action' => 'edit',
-							'menu' => 0,
-						),
-						admin_url( 'nav-menus.php' )
-					));
-				?>" class="nav-tab menu-add-new">
-					<?php printf( '<abbr title="%s">+</abbr>', esc_html__( 'Add menu' ) ); ?>
-				</a><?php endif; ?>
-			</div>
-			</div>
-			<div class="menu-edit">
+
+
+			<?php else : ?>
+			<div class="menu-edit <?php if ( isset( $_GET['menu'] ) && 0 == $_GET['menu'] || empty( $nav_menus ) ) echo 'blank-slate'; ?>">
 				<form id="update-nav-menu" action="<?php echo admin_url( 'nav-menus.php' ); ?>" method="post" enctype="multipart/form-data">
 					<div id="nav-menu-header">
 						<div id="submitpost" class="submitbox">
@@ -551,16 +536,10 @@
 									<label class="howto"><input type="checkbox"<?php checked( $auto_add ); ?> name="auto-add-pages" value="1" /> <?php printf( __('Automatically add new top-level pages' ), esc_url( admin_url( 'edit.php?post_type=page' ) ) ); ?></label>
 								</div>
 								<?php endif; ?>
-								<br class="clear" />
 								<div class="publishing-action">
 									<?php submit_button( empty( $nav_menu_selected_id ) ? __( 'Create Menu' ) : __( 'Save Menu' ), 'button-primary menu-save', 'save_menu', false, array( 'id' => 'save_menu_header' ) ); ?>
 								</div><!-- END .publishing-action -->
 
-								<?php if ( ! empty( $nav_menu_selected_id ) ) : ?>
-								<div class="delete-action">
-									<a class="submitdelete deletion menu-delete" href="<?php echo esc_url( wp_nonce_url( admin_url('nav-menus.php?action=delete&amp;menu=' . $nav_menu_selected_id), 'delete-nav_menu-' . $nav_menu_selected_id ) ); ?>"><?php _e('Delete Menu'); ?></a>
-								</div><!-- END .delete-action -->
-								<?php endif; ?>
 							</div><!-- END .major-publishing-actions -->
 						</div><!-- END #submitpost .submitbox -->
 						<?php
@@ -574,14 +553,20 @@
 					<div id="post-body">
 						<div id="post-body-content">
 							<?php
-							if ( isset( $edit_markup ) ) {
+							$drag_instructions = '';
+							if ( empty( $ordered_menu_items ) )
+								$drag_instructions = 'style="display: none;"';
+							
+							if ( isset( $edit_markup ) ) {								
+								echo '<div class="drag-instructions post-body-plain" ' . $drag_instructions . '>';
+								echo '<p>' . __('Drag each item into the order you prefer. Click an item to reveal additional configuration options.') . '</p>';
+								echo '</div>';
+								
 								if ( ! is_wp_error( $edit_markup ) )
 									echo $edit_markup;
-							} else if ( empty( $nav_menu_selected_id ) ) {
+							} else if ( empty( $nav_menu_selected_id ) || ( isset( $_GET['_wpnonce'] ) && 0 == count( $nav_menus ) ) ) {
 								echo '<div class="post-body-plain">';
-								echo '<p>' . __('To create a custom menu, give it a name above and click Create Menu. Then choose items like pages, categories or custom links from the left column to add to this menu.') . '</p>';
-								echo '<p>' . __('After you have added your items, drag and drop to put them in the order you want. You can also click each item to reveal additional configuration options.') . '</p>';
-								echo '<p>' . __('When you have finished building your custom menu, make sure you click the Save Menu button.') . '</p>';
+								echo '<p>' . __('Give your custom menu a name above, then click Create Menu.') . '</p>';
 								echo '</div>';
 							}
 							?>
@@ -599,6 +584,7 @@
 					</div><!-- /#nav-menu-footer -->
 				</form><!-- /#update-nav-menu -->
 			</div><!-- /.menu-edit -->
+			<?php endif; ?>
 		</div><!-- /#menu-management -->
 	</div><!-- /#menu-management-liquid -->
 	</div><!-- /#nav-menus-frame -->
Index: wp-admin/css/wp-admin.css
===================================================================
--- wp-admin/css/wp-admin.css	(revision 23299)
+++ wp-admin/css/wp-admin.css	(working copy)
@@ -2428,7 +2428,8 @@
 .fixed .column-categories,
 .fixed .column-tags,
 .fixed .column-rel,
-.fixed .column-role {
+.fixed .column-role,
+.fixed .column-count {
 	width: 15%;
 }
 
@@ -6750,8 +6751,17 @@
 
 /* nav-menu */
 
+.nav-menus-php #message {
+	display: none;
+}
+
+.nav-menus-php .nav-tab-wrapper {
+	margin-bottom: 20px;
+}
+
 #nav-menus-frame {
 	margin-left: 300px;
+	margin-top: 20px;
 }
 
 #wpbody-content #menu-settings-column {
@@ -6760,7 +6770,7 @@
 	margin-left: -300px;
 	clear: both;
 	float: left;
-	padding-top: 24px;
+	padding-top: 0;
 }
 
 .no-js #wpbody-content #menu-settings-column {
@@ -6785,10 +6795,39 @@
 	position: relative;
 }
 
+.blank-slate br { 
+	display: none; 
+} 
+
+.blank-slate .menu-name { 
+	height: 2em; 
+}
+
+.is-submenu {
+	color: #999;
+	font-style: italic;
+	font-weight: normal;
+	margin-left: 4px;
+}
+
+.common-links {
+	background: #fff;
+	border: 1px solid #dfdfdf;
+	line-height: 1.4em;
+	min-height: 42px;
+	padding: 0.9em;
+}
+
+.common-links label {
+	display: block;
+	line-height: 19px;
+}
+
 /* Menu Container */
 #menu-management-liquid {
 	float: left;
 	min-width: 100%;
+	margin-top: 3px;
 }
 
 #menu-management {
@@ -6802,6 +6841,10 @@
 	margin-bottom: 20px;
 }
 
+#menu-management p.search-box {
+	margin: 5px 0;
+}
+
 .nav-menus-php #post-body {
 	padding: 10px;
 	border-width: 1px 0;
@@ -6835,55 +6878,6 @@
 	font-weight:bold;
 }
 
-/* Menu Tabs */
-
-#menu-management .nav-tabs-nav {
-	margin: 0 20px;
-}
-
-#menu-management .nav-tabs-arrow {
-	width: 10px;
-	padding: 0 5px 4px;
-	cursor: pointer;
-	position: absolute;
-	top: 0;
-	line-height: 22px;
-	font-size: 18px;
-	text-shadow: 0 1px 0 #fff;
-}
-
-#menu-management .nav-tabs-arrow-left {
-	left: 0;
-}
-
-#menu-management .nav-tabs-arrow-right {
-	right: 0;
-	text-align: right;
-}
-
-#menu-management .nav-tabs-wrapper {
-	width: 100%;
-	height: 28px;
-	margin-bottom: -1px;
-	overflow: hidden;
-}
-
-#menu-management .nav-tabs {
-	padding-left: 20px;
-	padding-right: 10px;
-}
-
-.js #menu-management .nav-tabs {
-	float: left;
-	margin-left: 0px;
-	margin-right: -400px;
-}
-
-#menu-management .nav-tab {
-	margin-bottom: 0;
-	font-size: 14px;
-}
-
 #select-nav-menu-container {
 	text-align: right;
 	padding: 0 10px 3px 10px;
@@ -7080,7 +7074,7 @@
 }
 
 #menu-to-edit {
-	padding: 1em 0;
+	padding: 0.1em 0;
 }
 
 .menu ul {
@@ -7326,6 +7320,16 @@
 	margin: 5px 0 1px;
 }
 
+.nav-menus-php .blank-slate .publishing-action { 
+	float: left; 
+	margin: 1px 0 0; 
+}
+
+.nav-menus-php .blank-slate .auto-add-pages,
+.nav-menus-php .blank-slate #nav-menu-footer .publishing-action {
+	display: none;
+}
+
 .nav-menus-php .major-publishing-actions .delete-action {
 	vertical-align: middle;
 	text-align: left;
