$(function(){
	$("a.vote_up").click(function(){
	//get the id
	var tid = $(this).attr('id');
	
	the_id=tid.substring(1);
	
	//fadeout the vote-count 
	$("span#votes_count"+the_id).fadeOut("fast");
	
	//the main ajax request
		$.ajax({
			type: "POST",
			data: "action=vote_up&id="+the_id,
			url: "http://trends.trismegistos.net/votes.php",
			success: function(msg)
			{
				$("span#votes_count"+the_id).html(msg);
				//fadein the vote count
				$("span#votes_count"+the_id).fadeIn();
				//remove the spinner
				$("span#vote_buttons"+the_id).remove();
			}
		});
	});
	
	$("a.vote_down").click(function(){
	//get the id
	var tid = $(this).attr('id');
	the_id=tid.substring(1);
	
	//the main ajax request
		$.ajax({
			type: "POST",
			data: "action=vote_down&id="+the_id,
			url: "http://trends.trismegistos.net/votes.php",
			success: function(msg)
			{
				$("span#votes_count"+the_id).fadeOut();
				$("span#votes_count"+the_id).html(msg);
				$("span#votes_count"+the_id).fadeIn();
				$("span#vote_buttons"+the_id).remove();
			}
		});
	});
});