
jQuery(document).ready(function(){

  var $ = jQuery;
  
  $('#vote a').click(function(event){
  
    if (!$(this).hasClass('voted')) {
      
      var id = /^\/vote\/(\d+)$/.exec($(this).attr('href'))[1];
      
      $('body').css('cursor','progress');
      
      $.get('/vote.php', {id:id,isAjax:'1'}, function(){
        $('body').css('cursor','default');
        $('#vote a').addClass('voted');
        $('#vote div').append('<p>You have already cast your vote today, please come back tomorrow to vote again :)</p>');
      });
    }
        
    event.preventDefault();
  });

});