function initializeFormFieldText() {
	
	var defaultFormFieldText = new Array();
	
	$(".defaultformfieldtext").each( function( i ) {
		
		//
		// Store the initial value.
		//
		defaultFormFieldText[i] = $(this).val();
        
		//
		// Catch the "focus" event and clear the initial value from
		// the field when active.  Catch the "blur" event and replace
		// a blank entry with the initial value.
		//
		
		$(this).focus(function(){
        
        	if ($(this).val() == defaultFormFieldText[i]) {
        		
        		$(this).val("");
                
        	}
        	
        }).blur( function() {
        	
            if ( $.trim( $(this).val() ) == "" ) {
            	
                $(this).val( defaultFormFieldText[i] );
                
            }
            
        });
        
    });
    
}

