

// Set every label in the comments form to the width of the longest one.
$(document).ready(function() {  
    var max = 0;  
    $(".postinput label").each(function(){  
        if ($(this).width() > max)  
            max = $(this).width();  
    });  
    $(".postinput label").width(max + 10);  
});