$(document).ready(function(){
	$('.poll_qnswer input').change(function(){
		//alert($(this).val());
		$.post(localUrl+'/poll/vote',{'vote':$(this).val()},
			function(data)
			{
				if(data!='')
				{
					$('.poll_qnswer').remove();
					$('.poll_result').remove();
					$('#poll').find('.right_read_more').remove();
					$('#poll').attr({id:'poll_res'});
					$('#poll_question').after(data);
				}
			},'html');
	});
	$('#poll_result_a').click(function(){
		$.post(localUrl+'/poll/result','',
				function(data)
				{
					if(data!='')
					{
						$('.poll_qnswer').remove();
						$('.poll_result').remove();
						$('#poll').find('.right_read_more').remove();
						$('#poll').attr({id:'poll_res'});
						$('#poll_question').after(data);
					}
				},'html');
		return false;
	});
});