   var $tweetList;
    var $tweetUrl = 'http://api.twitter.com/1/statuses/user_timeline.json?screen_name=dincfurkan&&count=20&callback=?';
    $.getJSON($tweetUrl, function (data) {
        $.each(data, function (i, item) {
            if (i == 0) {
                $tweetList = $('<ul class="tweetList">');
            }
            // handle @reply filtering
            if (item.in_reply_to_status_id === null) {
                $tweetList.append('<li class="tweet_content_' + i + '">' +
                    '<p class="tweet_link_' + i + '">' +
                    item.text.replace(/#(.*?)(\s|$)/g, '<span class="hash">#$1 </span>')
                        .replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig, '<a href="$&">$&</a> ')
                        .replace(/@(.*?)(\s|\(|\)|$)/g, '<a href="http://twitter.com/$1">@$1 </a>$2') +
                    '</p></li>');
            }
        });
        $('#tweetStream').html($tweetList);
    });
