      function inputFocus() {
        document.getElementById('query-input').value = '';
      }

      function inputBlur() {
        var queryInput = document.getElementById('query-input');
        if (!queryInput.value) {
          queryInput.value = 'Search the PRIAM site';
        }
      }