$(function() {
	
	$( "#advisory_box" ).dialog({
		autoOpen: false,
		width: 400,
		show:"fade",
		hide:"fade",
		modal: true,
		resizable: false,
		buttons: {
			OK: function() {
				$( this ).dialog( "close" );
			},
		},
		close: function() {
			$("#advisory_box").hide();			
		}
	});
			
	$(".advisory_box" )
		.click(function() {
			$( "#advisory_box" ).dialog( "open" );
	});
});
// http://jqueryui.com/demos/dialog/
