$.fn.jqPoll=(function($)
{var vote_url='/forum/poll/vote/';return function(poll_id){this.each(function(){var $poll=$(this);var id=this.id.split("_").pop();$("#poll_form button",$poll).click(function(event)
{$('#poll_form :radio').each(function()
{if($(this).attr('checked')==true)
{var args={"poll_id":poll_id,"answer_id":$(this).val(),"csrfmiddlewaretoken":g_csrf_token};$.post(vote_url,args,function(html){$update=$(html);$poll.html($update.html());});}});return false;});});};})(jQuery);