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