$(function() {
  $('#polls_showResult').click(function() {
    
    ajaxRequest.send({
				url: '/modules/polls/ajax/polls.ajax',
				data: 'type=get&id='+$('#poll').attr('rel'),
  			success: function(e) {
          $('#polls-data').html(e.polls);
        }
    });
    return false;
  });
  $('#polls_sendVote').click(function() {
    if(!$('input[name=polls_Vote]:checked').val()) return false;
    ajaxRequest.send({
				url: '/modules/polls/ajax/polls.ajax',
				data: 'type=set&pid='+$('#poll').attr('rel')+'&vid='+$('input[name=polls_Vote]:checked').val(),
  			success: function(e) {
          $('#polls-data').html(e.polls);
        }
    });
    return false;
  });
});
