
$(function() {
	$("#poll").submit(function() {
		var fields = $("#comments, #poll :checked");
		$.getJSON('/apps/poll/answer/', fields, function (data, textStatus) {
			
			if (data.form.errors.answer_id) {
				if ($("#message").length == 0) {
					$("#poll-results").prepend("<p id='message'>Please select a choice:</p>")
				}
			} else {
				$("#poll-results").html("");
				if (data.form.errors.has_polled) {
					$("#poll-results").html("<p>You may only respond once.</p>");
				}		
				$("#poll-results").append("<b>Results:</b><br />");
				$.each(data.form.data, function(i,v) {
					$("<div>"+this.text+"<div class='pollBar'>"+this.percent+"% ["+this.count+"]</div></div>").appendTo("#poll-results").children(".pollBar").animate({ 
						width: this.percent+'%'
					}, 800);
				});
			}
		});
	});
});