$(function()
{
	$("a.vote_up").click(function()
	{
		//get the id
		the_id = $(this).attr('id');
		
		// show the spinner
		//$(this).parent().html("<img src='images/spinner.gif'/>");
		
		//fadeout the vote-count 
		$("div#ilike"+the_id).fadeOut("fast");
		
		//the main ajax request
		$.ajax(
		{
			type: "POST",
			data: "action=vote_up&id="+the_id,
			url: "/ilike.php",
			success: 
				function(msg)
				{
					$("div#ilike"+the_id).empty().append(msg);
					//$("div#ilike"+the_id).html(msg);
					//fadein the vote count
					$("div#ilike"+the_id).fadeIn("fast");
				},
			error:
			   	function()
			   	{
			    	$("div#ilike"+the_id).append("Une erreur est apparue durant la création du code html<br />");
			   	}
		});
	});
});