
  // clear Search Field
  function clearSearch () {
    var f = document.getElementById('keywords');
    f.onfocus = function() {
      if (this.value == 'search...') this.value = '';
    }
    f.onblur = function() {
      if (this.value != '') return;
      this.value = 'search...';
    }
  }

  // clear Contact forms
  function clearContact () {
    var f = document.getElementById('name');
    f.onfocus = function() {
      if (this.value == 'name') this.value = '';
    }
    f.onblur = function() {
      if (this.value != '') return;
      this.value = 'name';
    }

    var f = document.getElementById('email');
    f.onfocus = function() {
      if (this.value == 'email') this.value = '';
    }
    f.onblur = function() {
      if (this.value != '') return;
      this.value = 'email';
    }

    var f = document.getElementById('phone');
    f.onfocus = function() {
      if (this.value == 'phone') this.value = '';
    }
    f.onblur = function() {
      if (this.value != '') return;
      this.value = 'phone';
    }

    var f = document.getElementById('message');
    f.onfocus = function() {
      if (this.value == 'message') this.value = '';
    }
    f.onblur = function() {
      if (this.value != '') return;
      this.value = 'message';
    }
  }