function answerToPoll(){
	var answer=$("#quickpollForm input:radio:checked").val();
	var poll_id=$("#quickpollForm input[name='poll_id']").val();
	
	if(answer!=undefined){
		$.ajax({
			url: "/site_elements/src/ajax/poll_control.php",
			type: "POST",
			data: ({action :"answer" ,poll_id:poll_id , answer:answer}),
			
			success: function(msg){
				$(".poll").fadeOut(200).html(msg).fadeIn(200);
				
			}
   

		})
	}
}