$(document).ready(function () {
	$('.zoom').click(function (e) {
		var id=$(this).attr('id');
		var boite=$('#modal-content');
		$("#entete").append('<p class="loader">&nbsp;</p>');
		e.preventDefault();
		$.ajax({
			url: 'index.php',
			data: 'affiche='+id,
			type: 'post',
			cache: false, 
			dataType: 'html',
			success: function(data){
					boite.html(data);
					boite.modal();
					$(".loader").remove();
			},
			error:affiche
		});
	});
	
	function affiche(xhr){
		alert(xhr.statusText);
  	}
});

