<!--
function tweet() {
  var login  = 'norix2';
  var apiKey = 'R_983936f01a0f489bee4fcc490672aa40';
  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://www.o-kina-wa-okinawa.com/img/twitter_cmt125x125.jpg" alt="twitter" border="0" /></a>');
// -->
