<!--
function tweet() {
  var login  = 'scnews';
  var apiKey = 'R_3143ac3d81ee1520ea3a1093d6531eb6';
  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 url = 'http://twitter.com/home?status=' 
      + encodeURIComponent(
           ' ' + bitlyResponse.results[location.href]['shortUrl']
          + ' ' + '#shoes' + ' ' + '#fashion' + ' ' + '@ShoeCreamNews'
        );
  window.open(url, "_blank");
}

document.write('<a href="javascript:tweet();" title="twitter" rel="nofollow"><img src="http://www.shoecream.net/common/img/twitter.gif" alt="twitter" /></a>');
// -->