function fill_blog_feed() {
  var blog_html = '';
  blog_html += '          <div class="record">\n';
  blog_html += '            <h3 class="title"><a href="https://blog.wireshark.org/2009/11/302/" title="Chrome OS"><img src="/image/investigate.png" width="32" height="32" alt=""/>Chrome OS</a></h3>\n';
  blog_html += '            <p class="postinfo">Nov 20 &#124; By Loris Degioanni</p>\n';
  blog_html += '          </div>\n';
  blog_html += '          <div class="record">\n';
  blog_html += '            <h3 class="title"><a href="https://blog.wireshark.org/2009/11/autosuggestive/" title="Autosuggestive"><img src="/image/info.png" width="32" height="32" alt=""/>Autosuggestive</a></h3>\n';
  blog_html += '            <p class="postinfo">Nov 18 &#124; By Gerald Combs</p>\n';
  blog_html += '          </div>\n';
  blog_html += '          <div class="record last">\n';
  blog_html += '            <h3 class="title"><a href="https://blog.wireshark.org/2009/11/new-document-icons/" title="New Document Icons"><img src="/image/default.png" width="32" height="32" alt=""/>New Document Icons</a></h3>\n';
  blog_html += '            <p class="postinfo">Nov 17 &#124; By Gerald Combs</p>\n';
  blog_html += '          </div>\n';
  blog_html += '          <p><a class="more" href="https://blog.wireshark.org" title="Sniff free or die&#8230;"><b>Sniff free or die Blog &raquo;</b></a></p>\n';
  $(".module.wiresharkBlog .content").html(blog_html);
};

// ...and away we go!
$(document).ready(function(){
  fill_blog_feed();
});
