$(function(){
	$("a.cheer").click(function(){
	//get the id
	the_id = $(this).attr('id');
	
	// show the spinner
	$(this).parent().html("<img src='/img/spinner.gif'/>");
	
	//fadeout the vote-count 
	$("span#cheer_count"+the_id).fadeOut("fast");
	
	//the main ajax request
		$.ajax({
			type: "POST",
			data: "id="+$(this).attr("id"),
			url: "/php/cheer.php",
			success: function(msg)
			{
				$("span#cheer_count"+the_id).html(msg);
				//fadein the vote count
				$("span#cheer_count"+the_id).fadeIn();
				//remove the spinner
				$("a#"+the_id).remove();
			}
		});
	});
	
});	