$(function() {
		// a workaround for a flaw in the demo system (http://dev.jqueryui.com/ticket/4375), ignore!
		$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
		$( "#dialog-modal" ).dialog({
			height: 410,
			width: 680,
			modal: true,
			resizable: false,
			autoOpen: false,
			show: "fade",
			hide:"fade",
			draggable:true, 
			position:'center'
			
		});
		$( "#dialog-modal-ont" ).dialog({
			height: 500,
			width: 690,
			modal: true,
			resizable: false,
			autoOpen: false,
			show: "fade",
			hide:"fade",
			draggable:true, 
			position:'center'
			
		});
		
		
		$( "#contact" ).click(function() {
			$( "#dialog-modal" ).dialog( "open" );
			return false;
		});
		
		$( ".ont" ).click(function() {
			$( "#dialog-modal-ont" ).dialog( "open" );
			return false;
		});
	});
