(function($){
	jQuery.fn.formlabels = function() {
	    var max = 0;
	    $(this).each(function(){
	        if ($(this).width() > max)
	            max = $(this).width();
	    });
	    $(this).width(max + 1);
	};
})(jQuery); 
