// JavaScript Document
window.onload = function() {
  applyDefaultValue(document.getElementById('topsearchtext'), 'Search');
}
function applyDefaultValue(elem, val) {
  elem.style.color = '666666';
  elem.value = val;
  elem.onfocus = function() {
    if(this.value == val) {
      this.style.color = '';
      this.value = '';
    }
  }
  elem.onblur = function() {
    if(this.value == '') {
      this.style.color = '666666';
      this.value = val;
    }
  }
}

