Event.onReady(function() {
  
  new Editor.Control.Button("bold");
  new Editor.Control.Button("italic");
  new Editor.Control.Button("underline");

  new Editor.Control.Button("justify-left");
  new Editor.Control.Button("justify-center");
  new Editor.Control.Button("justify-right");

  new Editor.Control.Button("indent");
  new Editor.Control.Button("outdent");

  new Editor.Control.Button("insert-unordered-list");
  new Editor.Control.Button("insert-ordered-list");

  //new Editor.Control.Button("preview");

  new Editor.Control.CreateLink("create-link", new Editor.Command.CreateLink());
  new Editor.Control.Button("unlink");

  new Editor.Control.Button("insert-table", new Editor.Command.InsertTable());

  new Editor.Control.StyleMenu("set-style", {
    "Heading 1": new Editor.Command.FormatBlock("h1"),
    "Heading 2": new Editor.Command.FormatBlock("h2"),
    "Heading 3": new Editor.Command.FormatBlock("h3"),
    "Paragraph": new Editor.Command.FormatBlock("p")
  });

  new Editor.Control.InsertImage("insert-image", new Editor.Command.InsertImage());

  $$(".use_editor").each(function(element) {
    new Editor.Base(element, {
      styleSheets: "/stylesheets/body.css",
      height:      500,
      width:       700
    });
  });
});
