$(function(){
	$(".pollform").unbind().submit(function(e){

		e.preventDefault();

		var form = $(this);
		form.find('input[type=submit]').attr('disabled', 'disabled');

		var showResultsTo = form.parent();

		jQuery.post(form.attr('action'), form.serialize(), function(reply) {
			showResultsTo.html(reply);
		})

		return false;
	})
});


