<!--
function tweet() {
  var login  = 'twittell';
  var apiKey = 'R_7185d3fc450b2e536c106e326ce1b538';
  bitly = 'http://api.bit.ly/shorten' 
      + '?version=2.0.1&format=json&callback=callback'
      + '&login=' + login
      + '&apiKey=' + apiKey + '&longUrl=';
  var script = document.createElement('script');
  script.type = 'text/javascript';
  script.src = bitly + encodeURIComponent(location.href) ;
  document.body.appendChild(script);
}

function callback(bitlyResponse) {
  var title = document.title;
  var url = 'http://twitter.com/home/?status=' 
      + encodeURIComponent(
           title + ' ' 
             + bitlyResponse.results[location.href]['shortUrl']
        );
  window.open(url, "_blank");
}

document.write('<a href="javascript:tweet();" title="twitter" rel="nofollow"><img src="http://twittell.net/bp/tweetthis100_1.png" alt="twitter" /></a>');
// -->