$(function(){

	$('.toggle').click(function(){
		$(this).next().slideToggle(400,function(){
			$(this).prev().toggleClass('open');
		});
	});
})
