Index: wp-admin/css/wp-admin-rtl.css
===================================================================
--- wp-admin/css/wp-admin-rtl.css	(revision 23865)
+++ wp-admin/css/wp-admin-rtl.css	(working copy)
@@ -1338,19 +1338,14 @@
 	margin-right: -330px;
 }
 
-.theme-options .load-customize {
-	margin-right: 0;
-	margin-left: 30px;
-	float: right;
-}
-
 .theme-options span {
 	float: right;
 	margin-right: 0;
 	margin-left: 10px;
 }
 
-.theme-options ul {
+.theme-options ul,
+.theme-options .load-customize {
 	float: right;
 }
 
Index: wp-admin/css/wp-admin.css
===================================================================
--- wp-admin/css/wp-admin.css	(revision 23865)
+++ wp-admin/css/wp-admin.css	(working copy)
@@ -5547,11 +5547,6 @@
 	padding-bottom: 10px;
 }
 
-.theme-options .load-customize {
-	margin-right: 30px;
-	float: left;
-}
-
 .theme-options span {
 	float: left;
 	margin-right: 10px;
@@ -5561,7 +5556,8 @@
 	color: #999;
 }
 
-.theme-options ul {
+.theme-options ul,
+.theme-options .load-customize {
 	float: left;
 	margin: 0;
 }
Index: wp-admin/includes/menu.php
===================================================================
--- wp-admin/includes/menu.php	(revision 23865)
+++ wp-admin/includes/menu.php	(working copy)
@@ -73,7 +73,7 @@
 	$new_parent = $first_sub[2];
 	// If the first submenu is not the same as the assigned parent,
 	// make the first submenu the new parent.
-	if ( $new_parent != $old_parent ) {
+	if ( $new_parent != $old_parent && 'customize.php' != $new_parent ) {
 		$_wp_real_parent_file[$old_parent] = $new_parent;
 		$menu[$id][2] = $new_parent;
 
Index: wp-admin/menu-header.php
===================================================================
--- wp-admin/menu-header.php	(revision 23865)
+++ wp-admin/menu-header.php	(working copy)
@@ -53,7 +53,7 @@
 			$class[] = 'wp-has-submenu';
 			$submenu_items = $submenu[$item[2]];
 		}
-
+		
 		if ( ( $parent_file && $item[2] == $parent_file ) || ( empty($typenow) && $self == $item[2] ) ) {
 			$class[] = ! empty( $submenu_items ) ? 'wp-has-current-submenu wp-menu-open' : 'current';
 		} else {
@@ -82,7 +82,9 @@
 		if ( false !== strpos( $class, 'wp-menu-separator' ) ) {
 			echo '<div class="separator"></div>';
 		} elseif ( $submenu_as_parent && ! empty( $submenu_items ) ) {
-			$submenu_items = array_values( $submenu_items );  // Re-index.
+			$temp_submenu_items = $submenu_items = array_values( $submenu_items );  // Re-index.
+			if ( 'customize.php' == $submenu_items[0][2] )
+				$submenu_items[0][2] = 'themes.php';
 			$menu_hook = get_plugin_page_hook( $submenu_items[0][2], $item[2] );
 			$menu_file = $submenu_items[0][2];
 			if ( false !== ( $pos = strpos( $menu_file, '?' ) ) )
@@ -93,6 +95,7 @@
 			} else {
 				echo "\n\t<a href='{$submenu_items[0][2]}'$class $aria_attributes>$arrow<div class='wp-menu-image'>$img</div><div class='wp-menu-name'>$title</div></a>";
 			}
+			$submenu_items = $temp_submenu_items;
 		} elseif ( ! empty( $item[2] ) && current_user_can( $item[1] ) ) {
 			$menu_hook = get_plugin_page_hook( $item[2], 'admin.php' );
 			$menu_file = $item[2];
@@ -105,7 +108,7 @@
 				echo "\n\t<a href='{$item[2]}'$class $aria_attributes>$arrow<div class='wp-menu-image'>$img</div><div class='wp-menu-name'>{$item[0]}</div></a>";
 			}
 		}
-
+		
 		if ( ! empty( $submenu_items ) ) {
 			echo "\n\t<ul class='wp-submenu wp-submenu-wrap'>";
 			echo "<li class='wp-submenu-head'>{$item[0]}</li>";
@@ -140,6 +143,9 @@
 				) {
 					$class[] = 'current';
 				}
+				
+				if ( ! empty( $sub_item[3] ) )
+					$class[] = $sub_item[3];
 
 				$class = $class ? ' class="' . join( ' ', $class ) . '"' : '';
 
Index: wp-admin/menu.php
===================================================================
--- wp-admin/menu.php	(revision 23865)
+++ wp-admin/menu.php	(working copy)
@@ -136,18 +136,16 @@
 
 $menu[59] = array( '', 'read', 'separator2', '', 'wp-menu-separator' );
 
-if ( current_user_can( 'switch_themes') ) {
-	$menu[60] = array( __('Appearance'), 'switch_themes', 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'none' );
-		$submenu['themes.php'][5]  = array(__('Themes'), 'switch_themes', 'themes.php');
-		if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) )
-			$submenu['themes.php'][10] = array(__('Menus'), 'edit_theme_options', 'nav-menus.php');
-} else {
-	$menu[60] = array( __('Appearance'), 'edit_theme_options', 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'none' );
-		$submenu['themes.php'][5]  = array(__('Themes'), 'edit_theme_options', 'themes.php');
-		if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) )
-			$submenu['themes.php'][10] = array(__('Menus'), 'edit_theme_options', 'nav-menus.php' );
-}
+$appearance_cap = current_user_can( 'switch_themes') ? 'switch_themes' : 'edit_theme_options';
+ 
+$menu[60] = array( __('Appearance'), $appearance_cap, 'themes.php', '', 'menu-top menu-icon-appearance', 'menu-appearance', 'div' );
+	$submenu['themes.php'][4] = array( __( 'Customize' ), $appearance_cap, 'customize.php', 'hide-if-no-customize' ); 
+	$submenu['themes.php'][5] = array(__( 'Themes' ), $appearance_cap, 'themes.php');
+	if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) )
+		$submenu['themes.php'][10] = array(__( 'Menus' ), 'edit_theme_options', 'nav-menus.php');
 
+unset( $appearance_cap );
+
 // Add 'Editor' to the bottom of the Appearance menu.
 if ( ! is_multisite() )
 	add_action('admin_menu', '_add_themes_utility_last', 101);
Index: wp-admin/themes.php
===================================================================
--- wp-admin/themes.php	(revision 23865)
+++ wp-admin/themes.php	(working copy)
@@ -161,6 +161,12 @@
 			$class = '';
 			if ( 'themes.php' == $item[2] || 'theme-editor.php' == $item[2] )
 				continue;
+			if ( 'customize.php' == $item[2] ) {
+				if ( current_user_can( 'edit_theme_options' ) )
+					$class = ' class="load-customize hide-if-no-customize"';
+				else
+					continue;
+			}
 			// 0 = name, 1 = capability, 2 = file
 			if ( ( strcmp($self, $item[2]) == 0 && empty($parent_file)) || ($parent_file && ($item[2] == $parent_file)) )
 				$class = ' class="current"';
@@ -187,12 +193,7 @@
 	if ( $options || current_user_can( 'edit_theme_options' ) ) :
 	?>
 	<div class="theme-options">
-		<?php if ( current_user_can( 'edit_theme_options' ) ) : ?>
-		<a id="customize-current-theme-link" href="<?php echo wp_customize_url(); ?>" class="load-customize hide-if-no-customize" title="<?php echo esc_attr( $customize_title ); ?>"><?php _e( 'Customize' ); ?></a>
-		<?php
-		endif; // edit_theme_options
-		if ( $options ) :
-		?>
+		<?php if ( $options ) : ?>
 		<span><?php _e( 'Options:' )?></span>
 		<ul>
 			<?php foreach ( $options as $option ) : ?>
