function highlight() {
var elements = document.getElementsByTagName("input");
  for (i=0; i < elements.length; i++) {

     if(elements[i].getAttribute('type')=="text") {
       elements[i].onfocus=function() {
		 this.value='';
//         this.style.borderColor='#5789C6';
         this.style.backgroundColor='#D3E2FD';
		 this.style.border='none';
		 this.style.color='#333';
       };
       elements[i].onblur=function() {
//         this.style.borderColor='#AABBCC';
         this.style.backgroundColor='#fff';
      };

    }
  }
}

window.onload = highlight;