

$(document).ready(function(){

    $(".defaultInp").each(function(){
        if(this.value == '')
            this.value = this.title;
    });

    $(".defaultInp").focus(function(){
        if(this.value == this.title)
            this.value = '';
    });

    $(".defaultInp").blur(function(){
        if(this.value == '')
            this.value = this.title;
    });

    $("input:image, input:button, input:submit").click(function(){
        $(this.form.elements).each(function(){
            if(this.type =='text' || this.type =='textarea' || this.type =='password' ){
                if(this.value == this.title && this.title != ''){
                    this.value='';
                }
            }
        });
    });
});

