// ==UserScript==
// @name hotmail.com - Skip today page
// @author scipio 
// @namespace http://home.wanadoo.nl/sipke.reina/opera/index.html 
// @version 1.0
// @description  Jumps directly to the inbox when signing in to
//			Hotmail.
// @ujs:category site: enhancements
// @ujs:published 2005-10-25 21:48
// @ujs:modified 2005-10-25 21:56
// @ujs:documentation http://userjs.org/scripts/site/enhancements/hotmail-skip-today-page 
// @ujs:download http://userjs.org/scripts/download/site/enhancements/hotmail-skip-today-page.js
// ==/UserScript==


/* 
 * This script is granted to the Public Domain.
 */

if( window.location.href.match(/^http:\/\/(\w+\.){0,2}hotmail(\.msn)?\.com\/cgi-bin\/hmhome\?/) ) {
	if( !document.referrer || document.referrer.match(/^http:\/\/login.passport.net\/uilogin/) ) {
		location.href=location.href.replace(/hmhome/,'HoTMaiL');
	}
}