$(function(){
	$("a.vote_up").click(function(){
	the_id = $(this).attr('id');
	the_id = the_id.substr(1,the_id.length);
	$("#votes_count"+the_id).fadeOut("fast");
		$.ajax({
			type: "POST",
			data: "action=vote_up&id="+the_id,
			url: "votes.php",
			success: function(msg)
			{
				$("#votes_count"+the_id).html(msg);
				$("#votes_count"+the_id).fadeIn();
			}
		});
	});
});