// ==UserScript==
// @name        Bloglines Subscribe Speedup
// @namespace   http://www.longhighway.com/monkeyisland
// @description In the Bloglines Subscribe dialog, change the default folder from "TopLevel" to the 6th item in the "Folder" dropdown; add a "Subscribe" button next to the dropdown.
// @include     http://www.bloglines.com/sub/*
// ==/UserScript==

var selections = document.evaluate(
  "//select[@name='folder']",
  document,
  null,
  XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
  null
);
GM_log(selections);  
var folderSelection = selections.snapshotItem(0);
folderSelection.selectedIndex = 5;

var newButton = document.createElement('input');
newButton.setAttribute('type', 'submit');
newButton.setAttribute('name', 'submiturl');
newButton.setAttribute('value', 'Subscribe');
folderSelection.parentNode.insertBefore(newButton, folderSelection.nextSibling);
