Index: /CKEditor/trunk/_source/plugins/toolbar/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/toolbar/plugin.js	(revision 3115)
+++ /CKEditor/trunk/_source/plugins/toolbar/plugin.js	(revision 3116)
@@ -113,4 +113,10 @@
 								toolbarObj = { id : toolbarId, items : [] };
 
+							if ( row === '/' )
+							{
+								output.push( '<div class="cke_break"></div>' );
+								continue;
+							}
+
 							output.push( '<div id="', toolbarId, '" class="cke_toolbar">' );
 
@@ -206,22 +212,14 @@
 CKEDITOR.config.toolbar =
 [
-	[
-		'Source', '-',
-		'NewPage', 'Preview', 'Templates', 'Print', '-',
-		'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-',
-		'Undo', 'Redo', '-',
-		'Find', 'Replace', '-',
-		'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField', '-',
-		'Bold', 'Italic', 'Underline', 'Strike', '-',
-		'NumberedList', 'BulletedList', '-',
-		'Outdent', 'Indent', 'Blockquote', '-',
-		'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-',
-		'Subscript', 'Superscript', '-',
-		'SelectAll', 'RemoveFormat', '-',
-		'Link', 'Unlink', 'Anchor', '-',
-		'Image', 'Flash', '-',
-		'Table', 'Smiley', 'HorizontalRule', 'SpecialChar', 'PageBreak', '-',
-		'ShowBlocks', '-',
-		'Format'
-	]
+	['Source','-','NewPage','Preview','-','Templates'],
+	['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print'],
+	['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
+	['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
+	'/',
+	['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
+	['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
+	['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
+	['Link','Unlink','Anchor'],	['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
+	'/',
+	['Format'],	['ShowBlocks']
 ];
Index: /CKEditor/trunk/_source/skins/default/toolbar.css
===================================================================
--- /CKEditor/trunk/_source/skins/default/toolbar.css	(revision 3115)
+++ /CKEditor/trunk/_source/skins/default/toolbar.css	(revision 3116)
@@ -14,6 +14,8 @@
 .cke_skin_default .cke_toolbar
 {
-	padding: 5px;
+	padding-top: 1px;
+	padding-bottom: 1px;
 	display:inline-block;
+	float:left;
 }
 
@@ -30,4 +32,15 @@
 {
 	float:right;
+}
+
+.cke_skin_default .cke_break
+{
+	float:left;
+	clear:left;
+
+	/* IE */
+	*float:none;
+	*clear:right;
+    *height: 26px;
 }
 
