// ==UserScript==
// @name           ElRegFonts
// @namespace      http://tekhedd.com/greasemonkey
// @include        http://www.theregister.co.uk/
// @include        http://theregister.co.uk/
// ==/UserScript==

// Version 1.1

// Keep the right-column fixed width to prevent 
// manually-tweaked overflow (lame!)
var overrides = 'body { font-size: 10.5pt; }'
    +'#right-col { font-size: 14px; }'
;

function insertStyle(css) {
   var head;
   head = document.getElementsByTagName('head')[0];
   if (!head)
   {
      GM_log( 'head not found' );
      return;
   }

   // Insert override style here:
   // Our style comes last, so it overrides most included styles at this time.

   style = document.createElement('style');
   style.type = 'text/css';
   style.innerHTML = css;
   head.appendChild(style);
}

insertStyle(overrides);

