CmdUtils.CreateCommand({
  names: ["sweetter"],
  icon: "http://michaelgrace.org/michaelgrace/geek/treasure_chest/images/ubiquity/sweetter.jpg",
  description: "Loads a kynetx script into the page that shows the latest tweets about that page",
  author: { name: "Michael Grace", email: "michael@michaelgrace.org"},
  license: "GPL",
  homepage: "http://:geek.michaelgrace.org/",
  contributors: ["Michael Grace"],
  
  preview: function preview(pblock, args) {
    pblock.innerHTML = "<h2>Get Tweets about this page using:</h2><img src=\"http://michaelgrace.org/michaelgrace/geek/treasure_chest/images/ubiquity/sweetter_full.jpg\" alt=\"sweetter logo\"/>";
  },
  execute: function execute(args) {
    d = CmdUtils.getDocument();
    s = d.createElement('script');
    s.text = "KOBJ_config={'rids':['a41x49']};";
    d.body.appendChild(s);
    l = d.createElement('script');
    l.src = "http://init.kobj.net/js/shared/kobj-static.js";
    d.body.appendChild(l);
  }
});