﻿/*
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.resize_enabled = false;
	config.height = 80;
	config.width = 618;
	config.uiColor = '#CCCCFF';
	config.font_defaultLabel = 'Comic Sans MS';
	config.fontSize_defaultLabel = '14px';
	config.contentsCss = './ckeditor/contents.css';
	config.toolbar =
					[
						[ 'Font', 'FontSize', 'Bold', 'Italic', 'Underline', 'Strike', '-', 'NumberedList', 'BulletedList', '-', 'Subscript', 'Superscript', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'TextColor', 'BGColor', '-', 'RemoveFormat'],
					];
	
};



