/* <![CDATA[ */

$(function() {
    var tweet = "";
    var tweeturl = "https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&exclude_replies=true&screen_name=mhoumark&count=3&callback=?";
    $.getJSON(tweeturl, function(d) {
        $.each(d, function(i, item) {
            tweet += "<p><a href=" + "http://twitter.com/#!/mhoumark/status/" + item.id_str + ">" + item.text + "</a></p><br/>";
        });
        tweet += "";
        $('#tweets').append(tweet);
    });
});

/* pseudo - $('span[name*="http"]').addClass('haba haba'); */

/* ]]> */
