// OnLoad
$j(function(){
  
  // initialize the #poll_answer_form submit behavior
  $j('#poll_answer_form').submit(function() {
    $j.jsonhRequest({
      data: $j(this).serialize(),
      url: $j(this).attr("action"),
      success: function(jsonResponse) {
        $j("#poll_" + jsonResponse.poll_id.toString()).replaceWith(jsonResponse.html);
      }
    });
    
    return false;
  });
});