jQuery.fn.label_fields = function() { 
	return this.each(function(){ 
		$(this).val($(this).attr('title'));
		$(this).focus(function() {
			if ($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}
		}).blur(function() {
			if ($(this).val() == '') {
				$(this).val($(this).attr('title'));
			}
		});
	}); 
}; 
