jQuery(document).ready(function() {
	jQuery('a.external').each(function() {
		var url = jQuery(this).attr('href').split('/')[2];
		var link = 'http://www.google.com/s2/favicons?domain=' + escape(url);
		jQuery(this).css('background', 'url('+ link + ') no-repeat');
	});
});
