// 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          Hotmail - No Today Page
// @namespace     http://www.bhelpuri.net/Trixie
// @description	  Redirects to Mail tab instead of Today page on login to Hotmail
// @include       http://*hotmail.msn.com/cgi-bin/hmhome*
// ==/UserScript==

//
// Discussion forum: http://groups.yahoo.com/group/trixieUsers/
//

(function()
{
    var currentLocation = new String(location.href);
    location.href = currentLocation.replace("hmhome", "HoTMaiL");
})();