$(document).ready(function (){

$('#left_side').find("select, :radio, :checkbox, :text, textarea, :submit").uniform().css({ backgroundColor: '#fff' });

var max = 0;    
$("label").each(function(){        
if ($(this).width() > max)            
max = $(this).width();        
});    
$("label").width(max);


$(':text').css({ width: 185 });

$('#left_side, #right_side').find(':submit').closest('p').css({ paddingLeft: max+8 });



$('textarea').autoResize({
     // Quite slow animation:
    animateDuration : 300,
    // More extra space:
    extraSpace : 20
});



});
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 
 
