// ==UserScript==
// @name          last.fm - Paint it Black
// @description   Paint it Black style for last.fm
// @include       http://*.last.fm/*
// @include       http://www.last.fm/*
// @include       http://*.lastfm.*.*/*
// @author        Jerry Troiano (http://www.frailamerica.com)
// @run-at document-start
// ==/UserScript==

var cssNode = document.createElement('link');
cssNode.type = 'text/css';
cssNode.rel = 'stylesheet';
cssNode.href = 'http://www.frailamerica.com/lastfm/css/lastfm-paint-it-black.css';
cssNode.media = 'screen';
cssNode.title = 'dynamicLoadedSheet';
document.getElementsByTagName("head")[0].appendChild(cssNode);
