$(function() {
	var labelWidth = 0;

	$("#content form label").each(function(i) {
		if($(this).width() > labelWidth) {
			labelWidth = $(this).width();
		}
	});

	labelWidth += 20;

	$("#content form label").not('#add-form label').width(labelWidth);
	$("#content form .checkbox, #content form button, #content form .small").not('#add-form .checkbox, #add-form .small, #add-form button').css("margin-left",labelWidth);

	$("#content tr:even").addClass("even");

	$("input.date").datepicker({dateFormat: "yy-mm-dd"});
});
