I agree, this would be very useful.
You could try the following userscript:
// ==UserScript==
// @name So Hot Images
// @namespace http://josh.gitlin.name/javascripts
// @description Adds favicon images to the hot questions supercollider
// @version 1.0.2
// @include http://*.stackoverflow.com/*
// @include http://*.stackexchange.com/*
// @include http://serverfault.com/*
// @include http://superuser.com/*
// ==/UserScript==
var script = document.createElement("script");
script.textContent = "(" + grease.toString() + ")()";
document.body.appendChild(script);
function grease()
{
var hotIcons = function ()
{
$('#seContainerHot div.itemBox').each(function(){
if(!$('img.favicon',this).length)
{
var favicon=$('a.siteLink',this)[0].href+'favicon.ico';
this.innerHTML = '<img class="favicon" src="'+favicon+'" style="float:left;">'+this.innerHTML
}
});
};
window.setInterval(hotIcons, 1000);
}
Link to install into Greasemonkey or Chrome tested on Chrome 15.0.874.106.

Yes, I know this script could be improved. It probably doesn't have to run every second and the icons are on the wrong side. It was a super quick hack. But with a bit of motivation I could probably improve it... (hint, hint)