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