
	$(document).ready(function() {
			
			$('.toggle').click(function(){

				$(this).parent().siblings().slideToggle("slow");
			});
		
		})
