
$(function()
{
	var config = {
		toolbar:
		[
			['Undo','Redo','-','Bold', 'Italic','Underline','-','Superscript','Subscript','-', 'JustifyLeft' , 'JustifyCenter', 'JustifyRight','JustifyBlock', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','Cut','Copy','Paste','PasteText','PasteFromWord','-','ShowBlocks','Source'],
			['UIColor']
		]
	};

	// Initialize the editor.
	// Callback function can be passed and executed after full instance creation.
	$('textarea.admin').ckeditor(config);
	
	
	var config = {
		toolbar:
		[
			['Undo','Redo','-','Bold','-','Superscript','Subscript','-','PasteFromWord','-','ShowBlocks'],
			['UIColor']
		]
	};
	
	$('#abstract_form .body').ckeditor(config);
	
});

	//]]>


