// JavaScript Document
$(document).ready(function(){
      var tweeturl = "http://twitter.com/status/user_timeline/motavatorr.json?count=1&callback=?";
      $.getJSON(tweeturl, function(data){
        $.each(data, function(i, item) {
            $('<p></p>').addClass(i%2 ? 'even' : 'odd').html(item.text).prependTo('#tweet');
          });
      });
    });
