/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.editorConfig = function( config )
{
	// Define changes to default configuration here. For example:
	 config.language = 'ru';
	 config.uiColor = '#AADC6E';
         config.extraPlugins = 'MediaEmbed';
	 config.toolbar_Engio = [
    	['Source','Maximize','-','Cut','Copy','Paste','PasteFromWord','RemoveFormat','Replace','-','Undo','Redo','-','Link','Unlink','Anchor','-','Image','Flash','MediaEmbed','Table','HorizontalRule','SpecialChar'],
    	['Styles','Font','Bold','Italic','Underline','Subscript','Superscript','-','NumberedList','BulletedList','-','TextColor','BGColor','-','JustifyLeft','JustifyRight','JustifyCenter','JustifyBlock','Outdent','Indent']
   ];
   config.toolbar_EngioMini = [
	   ['Bold','Italic','Underline','Subscript','Superscript','NumberedList','BulletedList','TextColor','JustifyCenter','JustifyRight','JustifyBlock','Styles','Font','Link','Image','SpecialChar','Source']
   ];
   
   config.toolbar_Comments = [
	   ['Bold','Italic','Underline','Subscript', 'Superscript', 'Link']
   ];      
   config.toolbar_Post = [
	    [ 'Maximize','-','Cut','Copy','Paste','PasteFromWord','RemoveFormat', 'Replace','-','Undo','Redo','-','Link','Unlink','Anchor','-','Image','MediaEmbed','Table','HorizontalRule','SpecialChar'],
    	['Bold','Italic','Underline','Subscript','Superscript','-','NumberedList','BulletedList','-','TextColor','BGColor','-','JustifyLeft','JustifyRight','JustifyCenter','JustifyBlock','Outdent','Indent']
   ];    
   config.skin = 'office2003';                        
   config.autoGrow_maxHeight = 400;
   config.dialog_backgroundCoverColor = "#000000";
};

