$(function() {

 $('a','#pbuttons').button();

});

function vote() {
 
 
 
 $.post("modules/polls/vote.php",$('#form2').serialize(),function(data) {  
  $('#polldiv').hide();
  $('#polldiv').html(data);
  $('#polldiv').fadeIn(500); 
 });
 
 return false;

}

function results() {
 
 $.post("modules/polls/results.php",$('#form2').serialize(),function(data) {
   $('#polldiv').hide();
  $('#polldiv').html(data);
  $('#polldiv').fadeIn(500); 
 
 });
 return false;
}
