// JavaScript DocumentjQuery(document).ready(function() {          jQuery('input[type="text"]').addClass("idleField");          jQuery('input[type="text"]').focus(function() {              jQuery(this).removeClass("idleField").addClass("focusField");              if (this.value == this.defaultValue){                  this.value = '';              }              if(this.value != this.defaultValue){                  this.select();             }         });         $('input[type="text"]').blur(function() {             $(this).removeClass("focusField").addClass("idleField");             if (this.value == ''){                  this.value = this.defaultValue;              }         });     });