$j("document").ready(function(){
	
	$j(".form-sudjest").hide();
	$j("a#show-form-sudjest").click(function()
			{
				$j(".form-sudjest").show(500);
			}
	)
	$j(".form-sudjest").find("#button-sudjest").click(function()
			{
				var message = document.getElementById("sudjest").value;
				var url = $j("input#url").attr("value");
				//alert(message);
				$j.post(url, { admin_message: message}, function()
						{
							alert("Ваше сообщение отправлено администрации. Спасибо.")
							$j(".form-sudjest").empty();
						}
					);
						

				
			}
	);
});
