Index: /CKEditor/branches/prototype/_source/plugins/dialog/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/dialog/plugin.js	(revision 2471)
+++ /CKEditor/branches/prototype/_source/plugins/dialog/plugin.js	(revision 2472)
@@ -305,21 +305,21 @@
 							{
 								type : 'text',
-								label: 'Test Text 1',
-								id: 'testText1',
-								default: 'hello world!'
+								label : 'Test Text 1',
+								id : 'testText1',
+								'default' : 'hello world!'
 							},
 
 							{
 								type : 'text',
-								label: 'Test Text 2',
-								id: 'testText2',
-								default: 'Wheee'
+								label : 'Test Text 2',
+								id : 'testText2',
+								'default' : 'Wheee'
 							},
 
 							{
 								type : 'text',
-								label: 'Test Text 3',
-								id: 'testText3',
-								default: 'Blah blah'
+								label : 'Test Text 3',
+								id : 'testText3',
+								'default' : 'Blah blah'
 							}
 						]
@@ -340,5 +340,5 @@
 										title : 'Your love is like bad medicine!',
 										id : 'testText4',
-										default : 'hello world!'
+										'default' : 'hello world!'
 									},
 
@@ -347,5 +347,5 @@
 										label : 'Test Text 5',
 										id : 'testText5',
-										default : 'Wheee'
+										'default' : 'Wheee'
 									},
 
@@ -354,5 +354,5 @@
 										label : 'Test Text 6',
 										id : 'testText6',
-										default : 'Blah blah'
+										'default' : 'Blah blah'
 									}
 								]
@@ -372,5 +372,5 @@
 									{
 										type : 'checkbox',
-										label: 'Enable this',
+										label : 'Enable this',
 										title : 'Shake it up, just like bad medicine!',
 										checked : false
@@ -379,5 +379,5 @@
 									{
 										type : 'checkbox',
-										label: 'Enable that',
+										label : 'Enable that',
 										checked : true 
 									},
@@ -385,5 +385,5 @@
 									{
 										type : 'checkbox',
-										label: 'Enable those',
+										label : 'Enable those',
 										checked : false
 									},
@@ -393,5 +393,5 @@
 										label : 'Include library:',
 										title : 'Trying to include a library in LOLCODE.',
-										default : 'stdio',
+										'default' : 'stdio',
 										items : [
 											[ 'Standard I/O', 'stdio', 'You need this to write Hello World.' ],
@@ -449,5 +449,5 @@
 		if ( elementDefinition.className )
 			classes[ elementDefinition.className ] = 1;
-		var attributeClasses = ( attributes.class && attributes.class.split ) ? attributes.class.split( ' ' ) : [];
+		var attributeClasses = ( attributes['class'] && attributes['class'].split ) ? attributes['class'].split( ' ' ) : [];
 		for ( var i = 0 ; i < attributeClasses.length ; i++ )
 		{
@@ -458,5 +458,5 @@
 		for ( var i in classes )
 			finalClasses.push( i );
-		attributes.class = finalClasses.join( ' ' );
+		attributes['class'] = finalClasses.join( ' ' );
 
 		// Set the popup tooltop.
Index: /CKEditor/branches/prototype/_source/plugins/dialogui/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/dialogui/plugin.js	(revision 2471)
+++ /CKEditor/branches/prototype/_source/plugins/dialogui/plugin.js	(revision 2472)
@@ -73,5 +73,5 @@
 			if ( elementDefinition.className )
 				classes[ elementDefinition.className ] = 1;
-			var attributeClasses = ( attributes.class && attributes.class.split ) ? attributes.class.split( ' ' ) : [];
+			var attributeClasses = ( attributes['class'] && attributes['class'].split ) ? attributes['class'].split( ' ' ) : [];
 			for ( var i = 0 ; i < attributeClasses.length ; i++ )
 			{
@@ -82,9 +82,9 @@
 			for ( var i in classes )
 				finalClasses.push( i );
-			attributes.class = finalClasses.join( ' ' );
+			attributes['class'] = finalClasses.join( ' ' );
 
 			// Set the default value.
-			if ( elementDefinition.default )
-				attributes.value = elementDefinition.default;
+			if ( elementDefinition['default'] )
+				attributes.value = elementDefinition['default'];
 
 			// Write the inline CSS styles.
@@ -123,5 +123,5 @@
 						}, true ),
 					html = [],
-					attributes = { class : 'cke_dialog_ui_checkbox_input', type : 'checkbox' };
+					attributes = { 'class' : 'cke_dialog_ui_checkbox_input', type : 'checkbox' };
 				if ( elementDefinition.checked )
 					attributes.checked = 'checked';
@@ -146,5 +146,5 @@
 			{
 				var inputHtmlList = [], html = [],
-					commonAttributes = { class : 'cke_dialog_ui_radio_item' },
+					commonAttributes = { 'class' : 'cke_dialog_ui_radio_item' },
 					commonName = elementDefinition.id ? elementDefinition.id + '_radio' : CKEDITOR.tools.getNextNumber() + '_radio';
 				for ( var i = 0 ; i < elementDefinition.items.length ; i++ )
@@ -166,9 +166,9 @@
 						{
 							type : 'radio',
-							class : 'cke_dialog_ui_radio_input',
+							'class' : 'cke_dialog_ui_radio_input',
 							name : commonName,
 							value : item[1]
 						};
-					if ( elementDefinition.default == item[1] )
+					if ( elementDefinition['default'] == item[1] )
 						inputAttributes.checked = 'checked';
 					children.push( new CKEDITOR.ui.dialog.uiElement( dialog, inputDefinition, inputHtml, 'input', null, inputAttributes ) );
@@ -202,5 +202,5 @@
 			CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition, htmlList, 'span', null, null, elementDefinition.html );
 		}
-	});
+	}, true);
 
 CKEDITOR.ui.dialog.textInput.prototype = CKEDITOR.tools.extend( new CKEDITOR.ui.dialog.labeledElement,
@@ -256,5 +256,4 @@
 	= CKEDITOR.ui.dialog.html.prototype = new CKEDITOR.ui.dialog.uiElement;
 
-
 (function()
 {
Index: /CKEditor/branches/prototype/_source/skins/default/dialog.css
===================================================================
--- /CKEditor/branches/prototype/_source/skins/default/dialog.css	(revision 2471)
+++ /CKEditor/branches/prototype/_source/skins/default/dialog.css	(revision 2472)
@@ -274,5 +274,6 @@
 	background-color: white;
 	border: 1px solid #a0a0a0;
-	height: 16px;
+	height: 14px;
+	padding: 1px;
 	width: 100%;
 }
@@ -296,2 +297,7 @@
 	padding: 0px 6px;
 }
+
+.cke_skin_default strong
+{
+	font-weight: bold;
+}
