// Copyright (c) 2005 trixiedev@gmail.com
// This script is licensed under the MIT license.  See
// http://opensource.org/licenses/mit-license.php for more details.
//
// ==UserScript==
// @name          MSDN Search Focus
// @namespace     http://www.bhelpuri.net/Trixie
// @description	  Sets focus to the search edit control on MSDN
// @include       http://msdn.microsoft.com/
// ==/UserScript==

//
// Discussion forum: http://groups.yahoo.com/group/trixieUsers/
//

(function()
{
    var qu = document.getElementById('qu2');
    qu.focus();
})();
