 $(function() {
 	var html = "<ul>";
            var tweeturl = "http://twitter.com/status/user_timeline/jonasgahrstore.json?count=1&callback=?";
            $j.getJSON(tweeturl, function(d) {
                $j.each(d, function(i, item) {

                    html += "<li><a target=_BLANK style=font-weight:normal;color:#2e2e2e; href=http://www.twitter.com/jonasgahrstore/status/" + item.id + ">" + item.text + "</a></li>";

                });

                html += "</ul>";
                $j('#twitter-feed').append(html)
            });
        });