jQuery(document).ready(function($){
	$(".poll_loader").hide();
	$("#poll_button").click(function () { 
		poll_id = $('#poll').attr("class");
		poll_selection = $("input[@name=poll_answer]:checked").val();
		$("#poll_button").hide();
		$(".poll_loader").show();
		$.ajax({
		   type: "POST",
		   url: "scripts/polls/polls.php",
		   data: "poll_selection="+poll_selection+"&poll_id="+poll_id,
		   success: function(msg){
			 $(".poll_message").html(msg);
			$(".poll_hides").hide();
			$(".poll_loader").hide();
		   }
		});		 
		return false;
	});
})
