$(document).ready(function(){
  rows = $("table.cbFields tr");
  rows.each(function(){
    children=$(this).children('td');
    if(children[0].innerHTML == 'Twitter:'){
      twitterHandle = children[1].innerHTML;
      $("table.cbFields").append("<tr><td colspan='2' id='tweets'></td></tr>");
      $("#tweets").tweet({
        username: twitterHandle,
        join_text: "auto",
        avatar_size: 32,
        count: 5,
        intro_text: "<h3>Twitter Stream</h3>",
        auto_join_text_default: "",
        auto_join_text_ed: "",
        auto_join_text_ing: "",
        auto_join_text_reply: "",
        auto_join_text_url: "",
        loading_text: "loading tweets..."
      });
    }
  });
});
