// ==UserScript==
// @name            Gmail Redirection
// @namespace       http://people.opera.com/rijk/opera/scripts/
// @description     Intended to trigger redirecting to the fancy interface *after* logging in 
// @include         https://gmail.google.com/*
// @include         https://www.gmail.com/*
// ==/UserScript==


/*
Script inspiration:
  Robert Blaut
  http://my.opera.com/quiris/journal/56
  Jor
  http://my.opera.com/jor/journal/39

Changes:
  This adaption made by Rijk van Geijtenbeek, 2005-03-25.
*/

(function() {
    if(document.getElementById('bm'))
        window.location='http://gmail.google.com/gmail/?nocheckbrowser';
})();


