$(document).ready(function(){
 
	$(".img_legende").change(function() {
		Update(this.id); 
	}); 
});

function Update(id) {
	var repertoire = $("#nom_repertoire").html();
	var id_local = id.substring(id.indexOf("_") + 1, id.length);
	var nom_image = $('#nom_'+id_local).val(); ;
	var newValue = $('#'+id).val(); 
	//alert(repertoire+', '+nom_image+', '+newValue);

	$.post("services/update_legende.php", 
	   { repertoire: ""+repertoire+"", nom_image: ""+nom_image+"", newValue: ""+newValue+"" },
	   function(data){
          //  alert(data);  
	   }
	);
} 
