function capture_the_conversation() {
  jQuery(".twitter").tweetcapture();
  window.setTimeout(function() {
    capture_the_conversation();
  }, 5000);
}
jQuery(document).ready(function() {
  capture_the_conversation();
});
