$(function() {
  $('.contact_field').live('focus', function() {
    if ($(this).val() == $(this).attr('value')) {
      $(this).val('');
    }
  });
});
