/* @lotsofcode.com */

$(document).ready(function() {
  $('.add-remove-value').each(function () {
    $(this).click(function() {
      if (this.value == this.defaultValue) {
        this.value = '';
      }
    }
    );
    $(this).blur(function() {
      if (this.value == '') {
        this.value = this.defaultValue;
      }
    });
  });
});
