$(document).ready(function(){  
	    
	$('#poll').ajaxForm({ 
    target: '#poll-question', //Will update poll area with poll results
    success: function( data) { 
	// any additional post submit data goes here
    $('#poll-question').hide();
    $('#poll-question').fadeIn('slow'); 
    } 
});  
   
});