window.onload = function() {
  applyDefaultValue(document.getElementById('name_input'), 'Enter your name');
  applyDefaultValue(document.getElementById('email_input'), 'Enter your e-mail');
  applyDefaultValue(document.getElementById('message_textarea'), 'Enter your message');

}

function applyDefaultValue(elem, val) {
  elem.style.color = '#ffffff';
  elem.value = val;
  elem.onfocus = function() {
    if(this.value == val) {
      this.style.color = '';
      this.value = '';
    }
  }
  elem.onblur = function() {
    if(this.value == '') {
      this.style.color = '#ffffff';
      this.value = val;
    }
  }
}
