﻿$(document).ready(function() {

    //adjust form label widths
    var max = 0;
    $("label:not(.normal_input)").each(function() {
        if ($(this).width() > max)
            max = $(this).width();
    });
    $("label:not(.normal_input)").width(max+5);

});
