function carou_fade(id, ext, link){



	var libelle_id = 'libelle_content'+id;
	var short_content_id = 'short_content'+id;
	var short_content = document.getElementById(short_content_id).value;
	var libelle = document.getElementById(libelle_id).value;
	//alert(libelle);
	
	$('#img_carou_link').attr('href', "news,"+id+","+link+".html");
	//$('#img_carou_link').attr('src', "newsb-"+link+"-"+id+"."+ext);
	document.getElementById("imgBigCarrou").src = "newsb-"+link+"-"+id+"."+ext;
	$('#lien_carou').attr('href', "news,"+id+","+link+".html");
	$('#titre_carou').html(libelle);
	$('#contenu_carou').html(short_content);
}

