$(document).ready(function(){

	$("#visites_menu li").click(function(){
		$("#box").html($(this).children(".long-content").html());
		$("#boxWrapper").show();
		$("#boxOverlay").show();
		
	});
	$("#boxWrapper").click(function(){
		$("#boxWrapper").hide();
		$("#boxOverlay").hide();
	});
});
