$(function(){

$('#menuModal').dialog({
		title: 'Exciting News!',
	autoOpen: false,
	modal:true,
	buttons:{
		Ok: function(){
		$(this).dialog('close');
		},
	}
});


/*
$('.menubtn').bind('click', function(e){
	e.preventDefault();
	/* alert('We are in the process of creating new menus. Get ready for some new and exciting dishes!'); */
	//$('#menuModal').dialog('open');
//});



});
