jQuery(document).ready(function($){	
	
	$('#pollForm').bind('submit', function() {
		var form = $(this);
		$(this).ajaxSubmit({
			target: '#poll_res',
			beforeSubmit: function() {
				$('#poll_res').hide();
				form.remove();
				$(".poll_loading").show();
			},
			success: function() {
				$(".poll_loading").hide();
				$('#poll_res').show();
			}
		});
		return false; // <-- important!
	});
	
});
