/**
 * Code permettant dès la fin du chargement d'ajouter la couche Ajax pour les liens "a" contenant l'attribut f_ajax
 */
jQuery(function($) {
	
  	// change la carte
	$("a[@f_ajax_change_carte]").each(function(){
    		$(this).bind("click", function(event){
    			
    			$.ajax({
				type: "GET",
				url: $(this).attr('f_ajax_change_carte'),
				dataType: "json",
				success: function(json){
					$("#carte_principale").html(json.message_retour);
				},
				error: function (xhr, msg, exception){
						//console.log('xhr : '+ xhr + ', msg : ' +  msg + ', exception : ' + exception);
				}
			});
		});
	});
});