Index: /CKEditor/trunk/_source/plugins/toolbar/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/toolbar/plugin.js	(revision 3327)
+++ /CKEditor/trunk/_source/plugins/toolbar/plugin.js	(revision 3328)
@@ -109,5 +109,9 @@
 
 						var toolbars = editor.toolbox.toolbars,
-							toolbar = editor.config.toolbar;
+							toolbar = 
+									( editor.config.toolbar instanceof Array ) ? 
+										editor.config.toolbar
+									: 
+										editor.config[ 'toolbar_' + editor.config.toolbar ];
 
 						for ( var r = 0 ; r < toolbar.length ; r++ )
@@ -213,5 +217,5 @@
 
 /**
- * The toolbox (alias toolbar) definition. It is an array of toolbars (strips),
+ * The toolbar definition. It is an array of toolbars (strips),
  * each one being also an array, containing a list of UI items.
  * @type Array
@@ -219,10 +223,15 @@
  * // Defines a toolbar with only one strip containing the "Source" button, a
  * // separator and the "Bold" and "Italic" buttons.
- * <b>CKEDITOR.config.toolbar =
+ * <b>CKEDITOR.config.toolbar_Basic =
  * [
  *     [ 'Source', '-', 'Bold', 'Italic' ]
  * ]</b>;
  */
-CKEDITOR.config.toolbar =
+CKEDITOR.config.toolbar_Basic =
+[
+	['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ] 
+];
+
+CKEDITOR.config.toolbar_Full =
 [
 	['Source','-','Save','NewPage','Preview','-','Templates'],
@@ -240,2 +249,18 @@
 	['ShowBlocks']
 ];
+
+/**
+ * The toolbox (alias toolbar) definition. It is a toolbar name or an array of toolbars (strips),
+ * each one being also an array, containing a list of UI items.
+ * @type Array or String
+ * @example
+ * // Defines a toolbar with only one strip containing the "Source" button, a
+ * // separator and the "Bold" and "Italic" buttons.
+ * <b>CKEDITOR.config.toolbar =
+ * [
+ *     [ 'Source', '-', 'Bold', 'Italic' ]
+ * ]</b>;
+ * // Load toolbar_Name where Name = Basic.
+ * <b>CKEDITOR.config.toolbar = 'Basic'; 
+ */
+CKEDITOR.config.toolbar = 'Full';
