/*
* 文本框得到焦点,失去焦点.
*/
jQuery.fn.extend({
    "focusInput":function(){
        return this.each(function(){
            $(this).focus(function(){
                if( $(this).val() == $(this).get(0).defaultValue ){
                    $(this).val("");
                }
            });
            $(this).blur(function(){
                if( $(this).val() == "" ){
                    $(this).val( $(this).get(0).defaultValue );
                }
            })
        })
    }
});
 $(function(){
        $("#search_01").focusInput();
    })
 $(function(){
        $("#search_02").focusInput();
    })
 $(function(){
        $("#search_03").focusInput();
    })
 $(function(){
        $("#search_04").focusInput();
    })
$(function(){
        $("#search_05").focusInput();
    })
