			$(function(){
					$('#msg').dialog({
					open: function(){
						$("form input").attr("value","");
						$("form textarea").attr("value","");
						$("form div").empty();
						$("form div").css("display","none");
					},
					modal: true,
					autoOpen: false,
					width: 400,
					hide: 'slide',	
					buttons: {
						"Elküldöm": function() { 
							var name =	$("form input:first").attr("value");
							var email =	$("form input:last").attr("value");
							var content =	$("form textarea:first").attr("value");
							$.getJSON("sendmail.php",{name:name,email:email,content:content},function(info){
								
								$("form div").html(info.result);
								$("form div").fadeIn("slow");
								if(info.request=='success'){
								$("form div").css("background-color","#d5ffce");
								$("button").attr("disabled","disabled");
									$(this).oneTime("3s", function() {
										$("#msg").dialog("close"); 
										$("button").attr("disabled","");
									});
								}

							});
						},
						"Mégsem": function() { 
							$(this).dialog("close"); 
						}
					}
				});

				$('.msg_link').click(function(){
					$('#msg').dialog('open');
					return false;
				});
 		
				$('#dialog').dialog({
					modal: true,
					autoOpen: false,
					width: 600,
					hide: 'slide',	
					buttons: {
						"Bezár": function() { 
							$(this).dialog("close"); 
						}
					}
				});
				
 
				$('.dialog_link').click(function(){
					$('#dialog').dialog('open');
					return false;
				});
				
 
				
			});
