function showMemberComments(index) {
  $('#memberComments' + index).toggle();
}

function inlineFieldLabel(label, id) {
  var fieldLabel = label;
  var textInput = $(id);

  textInput.focus(function() {
    if (this.value == fieldLabel) {
//      alert('here');
      $(this).val('');
//      alert(this.value);
    }
  });

  textInput.blur(function() {
    if (this.value == "") {
      $(this).val(fieldLabel);
    }
  });

}