// ==UserScript==
// @name        back to work
// @namespace   http://www.withoutane.com/
// @description productivity-enhancing annoyance adder :)
// @include     *
// @exclude     http://withoutane.com/*
// @exclude     http://sabren.net/*
// @exclude     http://*.sabren.com/*
// @exclude     https://*.sabren.com/*
// @exclude     http://www.achewood.com/
// @exclude     http://wigu.com/overcompensating/
// @exclude     http://yix2k.livejournal.com/
// ==/UserScript==


// $Id: not even in cvs yet 
//
// i know this is ugly. :)

var bod, tag;
bod = document.getElementsByTagName('body')[0];
tag = document.createElement('div');
tag.setAttribute('id', '__mjw__train__');
tag.setAttribute('style', 
  ('background:gold; display:block; position:fixed; z-order: -65555; '
  +'left: 0px; top: 0px; height: 100%; width:100%; -moz-opacity:.50; '
  +'padding-top:50px; vertical-align:middle; text-align:center;'
  +'text-decoration: blink; '
  +'font-family: impact; color: black; font-size: 100pt;"'))
tag.setAttribute('onclick', "document.getElementById('__mjw__train__').style.display='none'");
tag.appendChild(document.createTextNode('GET BACK TO WORK!')); 
bod.appendChild(tag);
