var username = "tiagopedras",
    limit = 6;
$.getJSON("http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D'http%3A%2F%2Fdribbble.com%2Fplayers%2F"+username+"'%20and%20xpath%3D%22%2F%2F*%5Bcontains(%40class%2C'dribbble-img')%5D%22&format=json&diagnostics=true", function(data) {
    
    $.each(data.query.results.div.slice(0,limit), function(key, val) {
        link = val.a[0];
        over = val.a[1];
        console.debug(key);
        console.debug(val);
        $("#dribbble_update_list").append('<li><a href="http://dribbble.com' + link.href + '" title="' + over.span.content + '"><img src="http://dribbble.com' + link.img.src + '" alt="' + link.img.alt + '" /></a><span>' + over.strong + '</span></li>');
    });

});
