$(document).ready(function(){
	$(".contact-button").click(function(){
		
		$("#contact").dialog({
						draggable: false,
						closeOnEscape: true,
						resizable: false,
						modal: true,
						width: 465,
						title: 'Zadaj pytanie',
						close: function(event, ui) { $(this).dialog('destroy'); }
					});		
		return false;
	});	
});
