// JavaScript Document	
	
	afficherImage = function(rep,imageId,imgLibelle){
		var imgUrl = '<img src="img/'+rep+'/'+imageId+'.jpg" alt="'+imgLibelle+'"/>'
		//var divHtml = '<br />'+imgLibelle;
		//alert(imgUrl);
		
		/*
		$("#p_picto_demo").hide(0);
		$("#p_picto_demo").html(imgUrl);
		$("#p_picto_demo").load(imgUrl,function(){
			$("#p_picto_demo").fadeIn();
		});
		*/
		
		 $("#p_picto_demo").hide(0, function(){
			$("#p_picto_demo").html(imgUrl);		
			 $("#p_picto_demo").fadeIn(500);	
		});
		//$("#lbl_exemple").html(divHtml);
	};	
