// http://www.apejet.org/aaron/code/twitter/ - public domain (attribution appreciated) - Aaron McBride
var showTweet = {
  'html' : '',
  'set' : function (tweets) {
    if (tweets.length != 0) {
      var text = tweets[0].text;
      var username = tweets[0].user.screen_name;
      this.html = '<div class="tweet">'
        + '<q class="tweet_text">'
        + '<a href="http://twitter.com/' + username + '">'
        + text 
        + '</a>'
        + '</q>' 
        + '</div>';
    }
  }
}