$(document).ready( 
    function() {
	$('.poll_form input:radio').click( 
	    function() {
		this.form.submit();
	    }
	);
    }
);
