/**
 * @author luis
 */
jQuery(function(){
	var max = 0;
    jQuery('label').css('float','left');
    jQuery('label').each(function(){
        if (jQuery(this).width() > max)
            max = jQuery(this).width();   
    });
    jQuery('label').width(max);
});
