
$(document).ready(function(){
	
	$(".trigger").click(function(){
		$(this).next(".slide_panel").toggle("slow");
	});

});

