/**
 * Functions support exceptional functionality. Just to keep all this mess
 *  away from anything more thematically coherent
 */
$(function() {
	$( "#dialog" ).dialog(
		{ closeText: '' },
		{ width: 500 },
		{ buttons: [
	    {
	        text: "Close",
	        click: function() { $(this).dialog("close"); }
	    }
			]
	  }		
		);
});
