$(function() {
		
	$(".follow").click(function(){
	
		var element = $(this);
		var I = element.attr("id");
		var info = 'id_pro=' + I;
		//$("#loading").html('<img src="images/loading.gif" >');

		$.ajax({
		
			type: "POST",
			url: "follow.php",
			data: info,
			success: function(retour){
					
					//alert("Valeur : " + I );
					//$("a.follow > img").attr({ src: "images/coeur_fav.gif" });
					$("a.follow").remove();
					$("#nom_etablissement").append('<img src="images/coeur_favoris_orange.png" border="0">')

					//$("#loading").ajaxComplete(function(){}).slideUp();
					//$('#follow'+I).fadeOut(200).hide();
					//$('#remove'+I).fadeIn(200).show();


			}
		});
		return false;
	});
});

/*$(function() {

	$(".remove").click(function(){

		var element = $(this);
		var I = element.attr("id");
		var info = 'id_fav=' + I;
		alert("Valeur : " + I );
		$.ajax({
		
			type: "POST",
			url: "remove_fav.php",
			data: info,
			success: function(){
					
					$(".remove").remove();
					//$("#loading").ajaxComplete(function(){}).slideUp();
					//$('#remove'+I).fadeOut(200).hide();
					//$('#follow'+I).fadeIn(200).show();
					
			}
		});
		return false;
	});
}); */

