// ==UserScript==
// @name Focus First Textbox
// @namespace http://userscripts.org/users/23652
// @description Focuses the first textbox on the page. Include pages on which you want it to work
// @include http://scrapetorrent.com/Search/
// @copyright JoeSimmons
// ==/UserScript==
var box = document.evaluate("//input[@type='text']",document,null,9,null).singleNodeValue;
if(box!=null && box) {
box.focus();
}