$(document).ready(function() {
				
	$("#lg").live("click",function(e){
		e.preventDefault();
	
		$.ajax({
			type: "POST",
			data: "lg=" + $(this).attr("val") + "&lg_id=" + $(this).attr("val2"),
			url: "/ajax/groupe/lien_lg.php",
			dataType : "json",
			error: function(msg, string){
				return false;
			},
			success: function(data, status){
			 	if(typeof(data.retour) != 'undefined')
				{
			 		if (data.retour == "0")
					{
						window.location = "/groupes/listegroupe.php";
					}
				}
			}
		});

		return false;
	});

});
