$(function() {
  $('dl.qaSlider dt').click(function() { 
    $(this).next().toggleClass('opened');
    Site.toolkit.fixHeight();
  });
  $('#query').click(function() {
    if(this.value.match(/keyword/i)) this.value = '';
  });
});

Site.addAFriend = function() {
  console.log("test");
  var html = 
      $.makeArray(
        $('tr.first-recipient-row').
          map(function() {
            return(
              '<tr class="recipient-row">' + $(this).html() + '</tr>'
            )
          })
      ).join(" ");
  console.log(html);
  $('#add-friend-row').before(html);
  Site.toolkit.fixHeight();
};

