(function() {
if (typeof GBuzz == 'undefined') {
GBuzz = {};
}
var src = 'http://www.google.com/reader/link';
src += "?url=";
if ( GBuzz.url ) {
src += GBuzz.url;
} else {
src += location.href;
}
src += "&title=";
if ( GBuzz.title ) {
src += GBuzz.title;
} else {
src += document.title;
}
var html = ''
if ( GBuzz.customImage ) {
shareImg = GBuzz.customImage;
html += '
';
}
else if ( GBuzz.customText ) {
html += GBuzz.customText;
}
else {
html += 'Share on Google Buzz';
}
html += '';
html += '';
document.write(html);
})();