$(document).ready(function(){

  $('#poll_form_submit').live('click', function(){
      
    var options = {
        //target:        '#output1'
       // beforeSubmit:  showRequest,
        dataType:  'json',
        success:       updatePoll


    };

    $('#poll_form').ajaxSubmit(options);

    return false;

  });


 });

function updatePoll(data, statusText)  {

    if(data.answer == null){

       window.location="/polls";

    } else {

       $('#poll').replaceWith(data.answer); 
    }


}