 
  function pickCK()
  {
      $('.richtext').ckeditor(
      {
          "toolbar": 
          [
              [ "Bold", "Italic", "Underline" ],
              [ "NumberedList", "BulletedList", "-", "Outdent", "Indent" ],
              [ "JustifyLeft", "JustifyCenter", "JustifyRight", "JustifyBlock" ],
              [ "Link", "Unlink", "Anchor" ],
              [ "Image", "MediaEmbed", "Table", "HorizontalRule" ],
              "/",
              [ "Format", "Font", "FontSize" ],
              [ "TextColor", "BGColor" ],
              [ "Preview", "PasteFromWord", "PasteText", "RemoveFormat", "ShowBlocks", "Source" ]
          ],
          "filebrowserBrowseUrl": "/elfinder/elfinder.html",
          "filebrowserWindowWidth": "800",
          "filebrowserWindowHeight": "500",
          "extraPlugins": "MediaEmbed",
          "skin": "kama",
          "width" : "600",
      });
  }
  
  function pickCK_mini()
  {
      $('#text').ckeditor(
      {
          "toolbar": 
          [
              [ "Bold", "Italic", "Underline" ],
              [ "Format", "Font", "FontSize" ],
              [ "TextColor", "BGColor" ],              
          ],
          "skin": "kama",
          "height" : "130",
      });
  }  

