function fill_blog_feed() {
  var blog_html = '';
  blog_html += '          <div class="record">\n';
  blog_html += '            <h3 class="title"><a href="https://blog.wireshark.org/2010/03/sharkfest-10-awesome/" title="Sharkfest ’10 Is Going To Be Awesome"><img src="/image/announcement.png" width="32" height="32" alt=""/>Sharkfest ’10 Is Going To Be Awesome</a></h3>\n';
  blog_html += '            <p class="postinfo">Mar 12 &#124; By Gerald Combs</p>\n';
  blog_html += '          </div>\n';
  blog_html += '          <div class="record">\n';
  blog_html += '            <h3 class="title"><a href="https://blog.wireshark.org/2010/03/laura-wrote-a-book/" title="Laura Wrote A Book"><img src="/image/announcement.png" width="32" height="32" alt=""/>Laura Wrote A Book</a></h3>\n';
  blog_html += '            <p class="postinfo">Mar 10 &#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/2010/02/the-history-of-wireshark-in-3-minutes/" title="The History of Wireshark in 3 minutes"><img src="/image/video.png" width="32" height="32" alt=""/>The History of Wireshark in 3 minutes</a></h3>\n';
  blog_html += '            <p class="postinfo">Feb  9 &#124; By Loris Degioanni</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();
});
