// ==UserScript==
// @name        Forums Search Autofocus for Metro Mojo
// @namespace   http://dse.webonastick.com/
// @author      Darren Stuart Embry http://dse.webonastick.com/
// @description	Autofocus the text entry box when loading the Mojo forums search page.
// @include	    http://www.*mojo.com/newforums/search.cfm
// ==/UserScript==
//
// This is a Greasemonkey user script.
// To install it, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox, and revisit this script.
//
// If you're still using Internet Explorer, you're on your own.

(function() {
	for (var i = 0; i < document.forms.length; ++i) {
		if (/\bsearch\.cfm\b/i.test(document.forms[i].action)) {
			document.forms[i].elements[0].focus();
			return;
		}
	}
})();

