
		$(document).ready(function(){
		
			$('#f_feed').submit(function(){
				$.ajax({
					type: "POST",
					url: "/templates/php/send_vote_post.php",
					data: "fio="+$("#fio").val()+"&email="+$("#email").val()+"&feed="+$("#feed").val(),
					success: function(html){
						$("#content").html(html);
				   }
				});
				return false;
			});
			
		});
