$(document).ready(function(){
	$("#menu_lexique > span").each(function(){
		if($("#"+$(this).html()).html()){
			//alert ($("#"+$(this).html()).html());
			$(this).wrap('<a href="#" name="'+$(this).html()+'"></a>');
		}	
	});/**/
		//$("#menu_lexique span").wrap('<a href="#"></a>');	
	
	
	$("#menu_lexique a").click(function(){
		$("#def div").hide();
		$("#"+$(this).attr("name")).show();
		$("#"+$(this).attr("name")).css({overflow: 'auto'});
		return false;
	});


});