$(document).ready(function () {
	if ($('#ckeditor').length != 0)
	{
		CKEDITOR.replace( 'ckeditor',
		{
			resize_enabled : false,
			fullPage : false,
			contentsCss : 'style/editor.css',
			entities : false,
			toolbar :
			[
				['Cut','Copy','Paste','PasteText','PasteFromWord'],
				['Undo','Redo'], ['SelectAll','RemoveFormat'],
				['Bold','Italic','Underline','Strike'], ['Subscript','Superscript'],
				['NumberedList','BulletedList'], ['Outdent','Indent','Blockquote'],
				['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
				['Link'],
				['Image','Table','HorizontalRule'],
				['Format'],
				['TextColor','BGColor'],
				['Maximize', 'ShowBlocks']
			],
			toolbarCanCollapse : false
		});
	}
});

