/*!
 * jQuery UI Widget 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Pour afficher lightbox avec message alerte
 */
	$(function() {
		// a workaround for a flaw in the demo system (http://dev.jqueryui.com/ticket/4375), ignore!
		
	
		$("#dialog-message").dialog({
			width: 450,
			height: 295,
			modal: true,
			buttons: {
				Fermer: function() {
					$(this).dialog('close');
				}
			}
		});
	});