// ==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();
search.addEventListener("click", function (e) { search.select(); GM_log("Click event is called"); }, false);
search.addEventListener("focus", function (e) { search.select(); GM_log("Focus event is called"); }, false);

