$( function() {
		function accept_results( data ) {
			if( data.status == 0 )
			{
				$( "#poll_cont" ).html( data.results );
				$( "#poll_results" ).hide();
				$( "#poll_submit" ).hide();
			}
		}

		$("#poll_results" ).click( function() {
			$.getJSON( $("#poll_results" ).attr( "alt" ),
			             {},
			             accept_results );
		} );

		$("#poll_submit" ).click( function() {
			$( "#poll_form" ).ajaxSubmit( { dataType : "json", success : accept_results } );
		} );
	} );