// ==UserScript==
// @name          Auto focus to the search box on dictionary.com
// @namespace     http://dictionary.reference.com/
// @description   Auto focus to the search box on dictionary.com
// @include       http://dictionary.reference.com/
// ==/UserScript==

GM_log('We navigate to dictionary site!');

var search;
search = document.getElementById("q");
search.focus();
