counter = 0;
function get_rss_feed() {
  jQuery.get("/images/proxy.php?url=http://scale-out-blog.blogspot.com/feeds/posts/default", function(d) {
 
    $(d).find('entry').each(function() {

      if(counter < 3)
      {
              var $item = $(this);
              var title = $item.find('title').text();
              var link = $item.find("link[rel$='alternate']").attr('href');
              var description = $item.find('content').text();
              var pubDate = $item.find('pubDate').text();
              html = ''
              + '<a href="'
              + link
              + '">'
              + title
              + '</a>'
              + '<br /><br />';
              $("#blogresult").append(html);
        counter++;
      }
 
    });
    //jQuery('#blogresult').(html);  
  });
 
};
get_rss_feed();
