$(function(){
	$("a.vote_up").click(function(){
	the_id = $(this).attr('id');
	$(this).parent().html("<img src='/defimg/spinner.gif'/>");
	
	$("div#votes_count"+the_id).fadeOut("fast");
	
	$.ajax({
			type: "POST",
			data: "action=vote_up&id="+$(this).attr("id"),
			url: "/script/votes.php",
			success: function(msg)
			{
				$("div#votes_count"+the_id).html(msg);
				$("div#votes_count"+the_id).fadeIn();
				$("div#vote_buttons"+the_id).remove();
			}
		});
	});
	
	$("a.vote_down").click(function(){

	the_id = $(this).attr('id');
	$(this).parent().html("<img src='/defimg/spinner.gif'/>");
	
		$.ajax({
			type: "POST",
			data: "action=vote_down&id="+$(this).attr("id"),
			url: "/script/votes.php",
			success: function(msg)
			{
				$("div#votes_count"+the_id).fadeOut();
				$("div#votes_count"+the_id).html(msg);
				$("div#votes_count"+the_id).fadeIn();
				$("div#vote_buttons"+the_id).remove();
			}
		});
	});
});	
