$(document).ready(function(){

	$("#dialog-send-realisation").hide();
	$("#dialog-send-design").hide();

	$("#contact-realisation").click(function () {
		$("#dialog-send-realisation").show();
		$("#dialog-send-realisation").dialog({
			modal: true,
			resizable:false,
			width:360,
			height:320,
			overlay: {
				opacity: 0.2,
				background: "black"
			}
		});
	});
	
	$("#cancel-realisation").click(function() {
		$("#dialog-send-realisation").dialog("close");
	});

	$("#contact-design").click(function () {
		$("#dialog-send-design").show();
		$("#dialog-send-design").dialog({
			modal: true,
			resizable:false,
			width:360,
			height:320,
			overlay: {
				opacity: 0.2,
				background: "black"
			}
		});
	});
	
	$("#cancel-design").click(function() {
		$("#dialog-send-design").dialog("close");
	});
});
