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

