jQuery(document).ready(function(){

	$(".toggle_container").hide();
	
	$(".toggle").click(function(){
			$(this).next().slideToggle();
		});



});