(function($) {
    $(function() {
        $('body.home div#rightHomeCol h1').each(function(){
            var o, size;
            if(this.nodeName.toLowerCase() == 'h1') {
                size = 15;
                o = $(this);
            } else {
                size = 15;
                o = $(this).find('span:first');
            }
            o.html('<img src="font/render.php?size=' + size + '&text=' + o.text() + '" alt="' + o.text() + '">');
        });
        
        $('body.home div#leftHomeCol h1').each(function(){
            var o, size;
            if(this.nodeName.toLowerCase() == 'h1') {
                size = 18;
                o = $(this);
            } else {
                size = 15;
                o = $(this).find('span:first');
            }
            o.html('<img src="font/render.php?size=' + size + '&text=' + o.text() + '" alt="' + o.text() + '">');
        });

    });

})(jQuery);
