jQuery(document).ready(function() {

	$('a.voteBtn').click(function(){
		$(this).parent('td.vote').load($(this).attr('href'));
		$(this).fadeTo('slow', 0.3);
		return false;
	});

	$("#leaders").bind("ajaxComplete", function(request, settings){
		$('a.voteBtn').css({ 'opacity' : 1 });
		$('a.voteBtn').click(function(){
			$(this).parent('td.vote').load($(this).attr('href'));
			$(this).fadeTo('slow', 0.3);			
			return false;
		});
	});


});

