 $(document).ready(function() {
         $("#name").focus(function() {
            this.defaultValue = 'Voer uw naam in'
            if( this.value == this.defaultValue ) {
                this.value = "";
                $(this).css('color','#000000');
            }
            }).blur(function() {
                if( !this.value.length ) {
                    this.value = this.defaultValue;
                    $(this).css('color','#a8a8a8');
                }
            });

         $("#phone").focus(function() {
             this.defaultValue = 'Voer uw telefoonnummer in'
             if( this.value == this.defaultValue ) {
                 this.value = "";
                 $(this).css('color','#000000');
             }
             }).blur(function() {
                 if( !this.value.length ) {
                     this.value = this.defaultValue;
                     $(this).css('color','#a8a8a8');
                 }
             });                
     });    
