jQuery( function() {

	// click on button
	jQuery('.js-poll-vote').click ( function(e) {
		
		// stop href
		e.preventDefault();
		
		var id = this.id.replace('js-poll-vote-', '');
		var action = jQuery('#js-poll-frm-vote-' + id).attr('action');
		var radio_value = jQuery('input[@name=js-polloption-id-' + id + ']:checked').val();
		
		if (typeof radio_value != 'undefined') {
		
			// ajax request
			jQuery.post(action, { vote: 'vote', polloption_id: radio_value },
				function(data){
					jQuery('#js-div-poll-' + id).html(data);
					jQuery('#js-div-poll-' + id).show();
				}
			);
		
		}

	});
});
