$(function() {
		// a workaround for a flaw in the demo system (http://dev.jqueryui.com/ticket/4375), ignore!
		$("#dialog").dialog("destroy");
		
		if ($.cookie('sampleCookie')) {
			$("#dialog-form").dialog({
				autoOpen: true,
				height: 300,
				width: 410,
				modal: true,
				jumpMenu: {
				}
			});
		}
		
		$('#create-user')
			.button()
			.click(function() {
				$('#dialog-form').dialog('open');
		});

	});
