	$(function() {
		$("#datepicker").datepicker({minDate: 0, maxDate: '+2M +1D', dateFormat: 'MM dd, yy'});
	});

	$(function() {
		$("#dialog").dialog({
			bgiframe: true,
			modal: true,
			width: 400,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}
		});
	});