$(document).ready(function(){
    $("input:text, textarea, input:password").each(function(){
        if(this.value == '' && this.title != '')
            this.value = this.title;
    });
    $("input:text, textarea, input:password").focus(function(){
        if(this.value == this.title && this.title != '')
            this.value = '';
    });
    $("input:text, textarea, input:password").blur(function(){
        if(this.value == '' && this.title != '')
            this.value = this.title;
    });
});