function lab(dossier) { // fonction pour lancer le lab
	$("#cache_nav").show();
	$("#lab_retour").show();
	
	$("#nav").animate({ 
		opacity: 0.2				
	}, 500 );
	
	var temp_titre = new Array();
	temp_titre = dossier.split('_');
	
	$("#lab_colone_gauche").fadeIn(300, function (){
		$(".lab_colone_gauche_titre").empty();
		$(".lab_colone_gauche_titre").append(temp_titre[1]);											  
	});
	
	$.ajax({
	  url: "lab/"+dossier+"/description.txt",
	  cache: false,
	  success: function(html){
		$("#lab_colone_gauche_description").empty();
		$("#lab_colone_gauche_description").append(html);
	  }
	});

	$.ajax({
	  url: "iframe.php?dossier="+dossier,
	  cache: false,
	  success: function(html){
		$("#lab_colone_droite").fadeOut(300, function (){  
			$("#lab_colone_droite").empty();
			$("#lab_colone_droite").append(html);
			$("#lab_colone_droite").fadeIn(300, function (){});
		});
		
		$("#lab_retour").click(function (){
			$("#nav").animate({ // on remontre la nav
			opacity: 1.0				
			}, 1000 );
			
			$("#lab_retour").fadeOut(300, function (){});
			$("#cache_nav").hide(); // fait disparaitre le cache de la nav
			$("#lab_colone_droite").fadeOut(300, function (){
			 affiche("lab"); // on réaffiche le lab
			});
		});
	  }
	});
}	
