jQuery(document).ready(function() {
    jQuery('input[type="text"]').focus(function() {       
        if (this.value == this.defaultValue){
        		 this.value = '';
    		   }
    });
    
    jQuery('input[type="text"]').blur(function() {
    if (jQuery.trim(this.value) == ''){
    		 this.value = (this.defaultValue ? this.defaultValue : '');
    }
});    
});
