$(document).ready(function(){
    
    // Add a favicon to all links with class name favicon
    //
    $("a.favicon").each(function() {
        this.style.paddingLeft = '25px';
        this.style.background = 'transparent url(' + faviconFromLink(this) + ') no-repeat top left';
    });
    
});

function faviconFromLink(link) {
    var googleFaviconBaseURL = "http://www.google.com/s2/favicons?domain=";
    return (googleFaviconBaseURL + link.hostname);
}
