window.onload = function() {
  applyDefaultValue(document.getElementById('news_input'), 'Enter your email address');

}

function applyDefaultValue(elem, val) {
  elem.style.color = '#777';
  elem.value = val;
  elem.onfocus = function() {
    if(this.value == val) {
      this.style.color = '';
      this.value = '';
    }
  }
  elem.onblur = function() {
    if(this.value == '') {
      this.style.color = '#777';
      this.value = val;
    }
  }
}
