//
// ==UserScript==
// @name          CL Beautifier
// @namespace     http://throttled.org
// @description   Change font on Craigslist
// @include       http://*.craigslist.org/*
// @include       http://*.craigslist.com/*
// ==/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('body { font-family: verdana; }');

