CKEDITOR.editorConfig = function( config )
{
	config.width = 800;
	config.height = 500;
	config.enterMode = CKEDITOR.ENTER_BR;
	config.contentsCss = '../../../inc/styles.css';
	config.stylesCombo_stylesSet = 'styles:styles.js';
	config.toolbar = 'webpark';
	config.toolbar_webpark =
    [
		['Source','-','Save','Preview','-','Templates'],
		['Cut','Copy','Paste','PasteText','PasteFromWord','-', 'SpellChecker', 'Scayt'],
		['Undo','Redo','-','Find'],
		'/',
		['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
		['NumberedList','BulletedList','-','Outdent','Indent'],
		['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
		['Link','Unlink','Anchor'],
		['Image','Flash','Table','HorizontalRule','SpecialChar'],
		'/',
		['Styles','Font','FontSize'],
		['TextColor','BGColor','-','RemoveFormat']
    ];
	
	config.toolbar = 'formularmanager';

    config.toolbar_formularmanager =
    [
		['Source','-','Save','Preview','-','Templates'],
		['Cut','Copy','Paste','PasteText','PasteFromWord','-', 'SpellChecker', 'Scayt'],
		['Undo','Redo','-','Find'],
		['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','SpecialChar'],
		'/',
		['Styles','Font','FontSize'],
		['TextColor','BGColor','-','RemoveFormat']
    ];
	
	config.toolbar = 'blog';

    config.toolbar_blog =
    [
		['Save'],
		['Cut','Copy','Paste','PasteText','PasteFromWord','-', 'SpellChecker', 'Scayt','Undo','Redo','-','Find'],
		['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
		['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
		['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
		'/',
		['Table','HorizontalRule','SpecialChar'],
		['Styles','Font','FontSize'],
		['TextColor','BGColor','-','RemoveFormat']
    ];
	
};


