// Damned Fireball
// Version 0.1
// 2009-10-16
// Copyright (c) 2009 Greg Knauss
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          Damned Fireball
// @namespace     http://www.eod.com/code/damnedfireball/
// @description   Correct the post-season Daring Fireball banner
// @include       http://daringfireball.net/*
// ==/UserScript==

var banner = document.getElementById('Banner');
if (banner) {
	var img = banner.getElementsByTagName('img');
	if (img[0]) {
		img[0].src = 'http://www.eod.com/code/damnedfireball/logo.png';
	}
}

