Index: /CKEditor/branches/versions/3.2.x/_source/core/focusmanager.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/core/focusmanager.js	(revision 5140)
+++ /CKEditor/branches/versions/3.2.x/_source/core/focusmanager.js	(revision 5141)
@@ -69,5 +69,5 @@
 			var editor = this._.editor;
 
-			editor.container.getFirst().addClass( 'cke_focus' );
+			editor.container.getChild( 1 ).addClass( 'cke_focus' );
 
 			this.hasFocus = true;
@@ -115,5 +115,5 @@
 			var editor = this._.editor;
 
-			editor.container.getFirst().removeClass( 'cke_focus' );
+			editor.container.getChild( 1 ).removeClass( 'cke_focus' );
 
 			this.hasFocus = false;
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/maximize/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/maximize/plugin.js	(revision 5140)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/maximize/plugin.js	(revision 5141)
@@ -115,5 +115,5 @@
 					exec : function()
 					{
-						var container = editor.container.getChild( 0 );
+						var container = editor.container.getChild( 1 );
 						var contents = editor.getThemeSpace( 'contents' );
 
Index: /CKEditor/branches/versions/3.2.x/_source/themes/default/theme.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/themes/default/theme.js	(revision 5140)
+++ /CKEditor/branches/versions/3.2.x/_source/themes/default/theme.js	(revision 5141)
@@ -281,5 +281,5 @@
 	var container = this.container,
 		contents = CKEDITOR.document.getById( 'cke_contents_' + this.name ),
-		outer = resizeInner ? container.getChild( 0 ) : container;
+		outer = resizeInner ? container.getChild( 1 ) : container;
 
 	// Resize the width first.
@@ -305,5 +305,5 @@
 CKEDITOR.editor.prototype.getResizable = function()
 {
-	return this.container.getChild( 0 );
+	return this.container.getChild( 1 );
 };
 
