//search .click events        
        var default_value = new Array();
        $('input[type=text]').each(function(){
                default_value[$(this).attr('name')] = this.value;      
        });
        
        $('input[type=text]').focus(function(){
                if(typeof(default_value[$(this).attr('name')]) != 'undefined' && this.value == default_value[$(this).attr('name')]){
                        this.value = '';
                }	
        }); 
        $('input[type=text]').blur(function(){
                if(typeof(default_value[$(this).attr('name')]) != 'undefined' && this.value == ''){
                        this.value = default_value[$(this).attr('name')];
                }	
        });
