$(document).ready(function () {       
   
   $('a.vote').click(function(){
      var $this = $(this);
      var $inner = $this.parents('.inner');
      var $count = $('span.votes-count', $this.parents('div'));
   	  $this.parents('ul').html('<img src="/img/app.labore/votes/loading.gif"/>');
      $.post(this.href, function(xml){
         var total = $('vote total', xml);
			  $count.html(total).fadeIn();
			  $inner.html('<p>Obrigado por colaborar!</p>');
      });
      return false;
	});                     
	
});
