$(document).ready(function(){
    
  $("#poll_vote").click(function () {
			  
    $("#poll_vote").fadeOut('fast');
	  $.ajax({
        type: "POST",
        url: "/index.php/poll/vote",
        data: "poll_id=" + $("#poll_id").val() + "&poll_answer=" + $('input[name=\'poll_answer\']:checked').val(), 
        success: function(html){
          $("#poll .bg-photo").html(html);
	      $(".for_animation").animate( { width:"100%" }, { queue:false, duration:2000 } );
        }
      });
  });
});
