
/* Input text value change on click // by www.lotsofcode.com  */
/* required in bigbox.php */
$(document).ready(function() {
      $('.pufields').click(
          function() {
              if (this.value == this.defaultValue) {
                  this.value = '';
                  //$('.pufields').select();
              }
          }
      );
      $('textarea').focus(
          function() {
              if (this.value == this.defaultValue) {
                  this.select();                  
                  //this.value = this.defaultValue;
                  //$('.pufields').select();
                  
              }
          }
      );
      $('.pufields').blur(
          function() {
              if (this.value == '') {
                  this.value = this.defaultValue;
              }
          }
      );
                
});
