﻿/*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config )
{
    config.toolbar = 'MyToolbar';
	config.height = 500;
    config.toolbar_MyToolbar =
    [
        ['Cut','Copy','Paste','PasteText'],
        ['Undo','Redo','-','Find','Replace','-','SelectAll'],
        ['Format','RemoveFormat'],
		['FontSize'],
        ['Bold','Italic'],
        ['NumberedList','BulletedList','-'],
        ['Link','Unlink'],
		['Source']
    ];
};
