// ==UserScript==
// @name Bloglines subscription bookmarklet folder fix
// @author Horst Gutmann 
// @namespace http://weblog.zerokspot.com/posts/481/ 
// @version 1.0.1
// @description  Fixes a small problem with the bloglines
//			bookmarklet/subscription form that prevents
//			people from selecting the folder where the feed
//			should be stored. This script is deprecated
//			since Opera 9.
// @ujs:category site: fixes
// @ujs:published 2005-11-23 15:25
// @ujs:modified 2005-11-23 15:27
// @ujs:documentation http://userjs.org/scripts/site/fixes/bloglines-subscription-fix 
// @ujs:download http://userjs.org/scripts/download/site/fixes/bloglines-subscription-fix.user.js 
// @ujs:download.gm http://userjs.org/scripts/download/site/fixes/bloglines-subscription-fix.user.js 
// @include http://www.bloglines.com/sub*
// ==/UserScript==


/* 
 * This script is granted to the Public Domain.
 */

(function(){
	var select = document.forms["subform"].folder;
	select.removeChild(select.options[0]);
	var newDefault = document.createElement("option");
	newDefault.appendChild(document.createTextNode("_TOP_"));
	newDefault.setAttribute("value",0);
	select.insertBefore(newDefault,select.options[0]);
})();
