$(document).ready(function(){
	
	$(".toggle_container").hide();
 
	$(".trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$(".trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});
 
});

$(document).ready(function(){
	$("#totpag").load("http://www.villers-sur-mer.fr/script/memento.php");
	
	$("#addmemento img").click(function(){
			$("#totpag").load("http://www.villers-sur-mer.fr/script/memento.php?action=ajout&i=" + idpage + "&n=" + nompage + "&l=" + adrpage);
			
			});
});

