// ==UserScript==
// @name           RationalizeBeetlebum
// @namespace      http://grindblog.de/files
// @include        http://blog.beetlebum.de/*
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('* { font-family: Verdana, sans-serif; }');
