// ==UserScript==
// @name          Your Personal Rate of Return is: -50.2%
// @description   Brings the Google Finance favicon in line with reality
// @version       1.1
// @author        Joe Shaw <joe@joeshaw.org>
// @include       http://finance.google.com/*
// @include       http://www.google.com/finance*
// ==/UserScript==

var head = document.getElementsByTagName('head')[0];
var favicon = document.createElement('link');
favicon.setAttribute('type', 'image/x-icon');
favicon.setAttribute('rel', 'shortcut icon');
favicon.setAttribute('href', 'http://joeshaw.org/junkbarn/google-finance-favicon.ico');
head.appendChild(favicon);
